2010-11-01 23:57:09 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
2012-05-03 20:13:10 +00:00
|
|
|
* Extraction of SVG image metadata.
|
2010-11-01 23:57:09 +00:00
|
|
|
*
|
2010-11-04 00:35:29 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
2010-11-01 23:57:09 +00:00
|
|
|
* @file
|
|
|
|
|
* @ingroup Media
|
2012-07-10 12:48:06 +00:00
|
|
|
* @author "Derk-Jan Hartman <hartman _at_ videolan d0t org>"
|
2010-11-04 00:35:29 +00:00
|
|
|
* @author Brion Vibber
|
|
|
|
|
* @copyright Copyright © 2010-2010 Brion Vibber, Derk-Jan Hartman
|
2018-05-23 23:23:42 +00:00
|
|
|
* @license GPL-2.0-or-later
|
2010-11-01 23:57:09 +00:00
|
|
|
*/
|
|
|
|
|
|
2012-05-03 20:13:10 +00:00
|
|
|
/**
|
|
|
|
|
* @ingroup Media
|
2019-03-30 20:14:52 +00:00
|
|
|
* @deprecated since 1.34
|
2012-05-03 20:13:10 +00:00
|
|
|
*/
|
2010-11-01 23:57:09 +00:00
|
|
|
class SVGMetadataExtractor {
|
2019-03-30 20:14:52 +00:00
|
|
|
/**
|
|
|
|
|
* @param string $filename
|
|
|
|
|
* @return array
|
|
|
|
|
* @deprecated since 1.34, use SVGReader->getMetadata() directly
|
|
|
|
|
*/
|
|
|
|
|
public static function getMetadata( $filename ) {
|
|
|
|
|
wfDeprecated( __METHOD__, '1.34' );
|
|
|
|
|
|
2010-11-04 00:35:29 +00:00
|
|
|
$svg = new SVGReader( $filename );
|
2013-12-05 10:05:05 +00:00
|
|
|
|
2010-11-04 00:35:29 +00:00
|
|
|
return $svg->getMetadata();
|
2010-11-01 23:57:09 +00:00
|
|
|
}
|
|
|
|
|
}
|