TCPDF::SVGPath( $d, $style = '' )
Draws an SVG path
Description Description
Parameters Parameters
- $d
-
(Required) (string) attribute d of the path SVG element
- $style
-
(Optional) (string) Style of rendering. Possible values are: <ul> <li>D or empty string: Draw (default).</li> <li>F: Fill.</li> <li>F*: Fill using the even-odd rule to determine which regions lie inside the clipping path.</li> <li>DF or FD: Draw and fill.</li> <li>DF* or FD*: Draw and fill using the even-odd rule to determine which regions lie inside the clipping path.</li> <li>CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).</li> <li>CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).</li> </ul>
Default value: ''
Return Return
(array) of container box measures (x, y, w, h)
Source Source
File: includes/lib/tcpdf/tcpdf.php
Changelog Changelog
Version | Description |
---|---|
5.0.000 | Introduced. |