![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/vendor/phenx/php-svg-lib/src/Svg/ |
<?php /** * @package php-svg-lib * @link http://github.com/PhenX/php-svg-lib * @author Fabien Ménager <[email protected]> * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html */ namespace Svg; class DefaultStyle extends Style { public $color = [0, 0, 0, 1]; public $opacity = 1.0; public $display = 'inline'; public $fill = [0, 0, 0, 1]; public $fillOpacity = 1.0; public $fillRule = 'nonzero'; public $stroke = 'none'; public $strokeOpacity = 1.0; public $strokeLinecap = 'butt'; public $strokeLinejoin = 'miter'; public $strokeMiterlimit = 4; public $strokeWidth = 1.0; public $strokeDasharray = 0; public $strokeDashoffset = 0; }