/lib/PHPExiftool/Driver/Tag/DICOM/FrameDelay.php
https://github.com/aquatiku/PHPExiftool · PHP · 43 lines · 17 code · 15 blank · 11 comment · 0 complexity · c768091672c164e55055998f5d5434e4 MD5 · raw file
- <?php
- /*
- * This file is part of PHPExifTool.
- *
- * (c) 2012 Romain Neutron <imprec@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file 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';
- }