File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
lib/PHPExiftool/Driver/Tag/ID3v23 Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+
3+ /*
4+ * This file is part of PHPExifTool.
5+ *
6+ * (c) 2012 Romain Neutron <[email protected] > 7+ *
8+ * For the full copyright and license information, please view the LICENSE
9+ * file that was distributed with this source code.
10+ */
11+
12+ namespace PHPExiftool \Driver \Tag \ID3v23 ;
13+
14+ use JMS \Serializer \Annotation \ExclusionPolicy ;
15+ use PHPExiftool \Driver \AbstractTag ;
16+
17+ /**
18+ * @ExclusionPolicy("all")
19+ */
20+ class PictureMIMEType extends AbstractTag
21+ {
22+
23+ protected $ Id = 'APIC-1 ' ;
24+
25+ protected $ Name = 'PictureMIMEType ' ;
26+
27+ protected $ FullName = 'ID3::v2_3 ' ;
28+
29+ protected $ GroupName = 'ID3v2_3 ' ;
30+
31+ protected $ g0 = 'ID3 ' ;
32+
33+ protected $ g1 = 'ID3v2_3 ' ;
34+
35+ protected $ g2 = 'Audio ' ;
36+
37+ protected $ Type = '? ' ;
38+
39+ protected $ Writable = false ;
40+
41+ protected $ Description = 'Picture MIME Type ' ;
42+
43+ protected $ local_g2 = 'Image ' ;
44+ }
You can’t perform that action at this time.
0 commit comments