TCPDF::startSVGElementHandler( $parser, $name, $attribs, $ctm = array() )
Sets the opening SVG element handler function for the XML parser. (*** TO BE COMPLETED ***)
Description Description
Parameters Parameters
- $parser
-
(Required) (resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $name
-
(Required) (string) The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
- $attribs
-
(Required) (array) The third parameter, attribs, contains an associative array with the element's attributes (if any). The keys of this array are the attribute names, the values are the attribute values. Attribute names are case-folded on the same criteria as element names. Attribute values are not case-folded. The original order of the attributes can be retrieved by walking through attribs the normal way, using each(). The first key in the array was the first attribute, and so on.
- $ctm
-
(Optional) (array) tranformation matrix for clipping mode (starting transformation matrix).
Default value: array()
Source Source
File: includes/lib/tcpdf/tcpdf.php
Changelog Changelog
Version | Description |
---|---|
5.0.000 | Introduced. |