/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

  1. <?php
  2. /*
  3. * This file is part of PHPExifTool.
  4. *
  5. * (c) 2012 Romain Neutron <imprec@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace PHPExiftool\Driver\Tag\DICOM;
  11. use JMS\Serializer\Annotation\ExclusionPolicy;
  12. use PHPExiftool\Driver\AbstractTag;
  13. /**
  14. * @ExclusionPolicy("all")
  15. */
  16. class FrameDelay extends AbstractTag
  17. {
  18. protected $Id = '0018,1066';
  19. protected $Name = 'FrameDelay';
  20. protected $FullName = 'DICOM::Main';
  21. protected $GroupName = 'DICOM';
  22. protected $g0 = 'DICOM';
  23. protected $g1 = 'DICOM';
  24. protected $g2 = 'Image';
  25. protected $Type = '?';
  26. protected $Writable = false;
  27. protected $Description = 'Frame Delay';
  28. }