| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 | <?php/**
 * @package php-svg-lib
 * @link    http://github.com/PhenX/php-svg-lib
 * @author  Fabien Ménager <fabien.menager@gmail.com>
 * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html
 */
 
 namespace Svg;
 
 class DefaultStyle extends Style
 {
 public $color = '';
 public $opacity = 1.0;
 public $display = 'inline';
 
 public $fill = 'black';
 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;
 }
 |