uawdijnntqw1x1x1
IP : 216.73.217.24
Hostname : webm007.cluster114.gra.hosting.ovh.net
Kernel : Linux webm007.cluster114.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
locationbo
/
www
/
libraries
/
smartslider3
/
src
/
Framework
/
FastImageSize
/
Type
/
.
/
TypeSvg.php
/
/
<?php namespace Nextend\Framework\FastImageSize\Type; class TypeSvg extends TypeBase { /** * {@inheritdoc} */ public function getSize($filename) { $data = $this->fastImageSize->getImage($filename, 0, 100); preg_match('/width="([0-9]+)"/', $data, $matches); if ($matches && $matches[1] > 0) { $size = array(); $size['width'] = $matches[1]; preg_match('/height="([0-9]+)"/', $data, $matches); if ($matches && $matches[1] > 0) { $size['height'] = $matches[1]; $this->fastImageSize->setSize($size); return; } } preg_match('/viewBox=["\']([0-9]+) ([0-9]+) ([0-9]+) ([0-9]+)["\']/i', $data, $matches); if ($matches) { $this->fastImageSize->setSize(array( 'width' => $matches[3] - $matches[1], 'height' => $matches[4] - $matches[2], )); } } }
/home/locationbo/www/libraries/smartslider3/src/Framework/FastImageSize/Type/./TypeSvg.php