DgsSVGGetDocument: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ Gets the underlying XML document from an SVG element. ==Syntax== <syntaxhighlight lang="lua"> xmlnode dgsSVGGetDocument( svg svgElement ) </syntaxhighlight> ===Required Arguments=== *'''svgElement:''' The svg element you want to get the XML document of. ===Returns=== * Returns an xmlnode if successful, false otherwise ==Example== <section name="Client" class="client" show="true"> <syntaxhighlight lang="lua"> loadstring(exports.d...")
 
(Remove obsolete Requirements section)
 
(3 intermediate revisions by one other user not shown)
Line 18: Line 18:
local svg = dgsCreateSVG(500,500) -- Create the SVG .  
local svg = dgsCreateSVG(500,500) -- Create the SVG .  
local svgDoc = dgsSVGGetDocument(svg) -- Get the SVG Document so you can modify it .
local svgDoc = dgsSVGGetDocument(svg) -- Get the SVG Document so you can modify it .
local rect = dgsSVGCreateNode(svgDoc,"rect",50,50,50,50) -- Create SVG node with rect shape.  
local rect = dgsSVGCreateNode(svgDoc,"rect",50,50,50,50) -- Create SVG node with rect type.  
dgsSVGNodeSetAttributes(rect,{ -- Change the rect shape attributes value .
dgsSVGNodeSetAttributes(rect,{ -- Change the node attributes value .
  ["stroke"] = {255,255,0},
  ["stroke"] = {255,255,0},
["stroke-width"] = "5px",
["stroke-width"] = "5px",
  ["fill"] = "rgb(255,0,0)",
  ["fill"] = "rgb(255,0,0)",
}
})


local theImage = dgsCreateImage(200,200,500,500,svg,false) --Render the svg by dgsImage
local theImage = dgsCreateImage(200,200,500,500,svg,false) --Render the svg by dgsCreateImage
</syntaxhighlight></section>
</syntaxhighlight></section>
==Requirements==
{{Requirements|n/a|1.5.8-9.20979|}}


==See Also==
==See Also==
{{DGSFUNCTIONS}}
{{DGSFUNCTIONS}}

Latest revision as of 17:31, 7 November 2024

Gets the underlying XML document from an SVG element.

Syntax

 xmlnode dgsSVGGetDocument( svg svgElement )

Required Arguments

  • svgElement: The svg element you want to get the XML document of.

Returns

  • Returns an xmlnode if successful, false otherwise

Example

Click to collapse [-]
Client
loadstring(exports.dgs:dgsImportFunction())() -- load dgs functions using loadstring.

local svg = dgsCreateSVG(500,500) -- Create the SVG . 
local svgDoc = dgsSVGGetDocument(svg) -- Get the SVG Document so you can modify it .
local rect = dgsSVGCreateNode(svgDoc,"rect",50,50,50,50) -- Create SVG node with rect type. 
dgsSVGNodeSetAttributes(rect,{ -- Change the node attributes value .
 	["stroke"] = {255,255,0},
	["stroke-width"] = "5px",
 	["fill"] = "rgb(255,0,0)",
})

local theImage = dgsCreateImage(200,200,500,500,svg,false) --Render the svg by dgsCreateImage

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips