DgsSVGCreateNode

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function create a node in svg document .

Syntax

xmlnode dgsSVGCreateNode ( xmlnode xmlNode, string nodeType, ... )

Required Arguments

  • xmlNode : The xmlnode that you want to create node in.
  • nodeType : Arguments after nodeType are detetmined by the available types as follows:
    • rect: Rectangle. The arguments are as follows.
      • [ int x, int y ] , int width, int height 
      • x: An integer of the 2D X position of the rectangle.
      • y: An integer of the 2D Y position of the rectangle.
      • width: An integer of the width of the rectangle.
      • height: An integer of the height of the rectangle.
    • circle: Circle. The arguments are as follows.
      • int cx, int cy, float r 
      • cx: An integer of the center 2D X position of the circle.
      • cy: An integer of the center 2D Y position of the circle.
      • r: A float of the radius of the circle.
    • line Line. The arguments are as follows.
      • int x1, int y1, int x2, int y2 
      • x1: An integer of the 2D X position of the start position of the line.
      • y1: An integer of the 2D Y position of the start position of the line.
      • x2: An integer of the 2D X position of the end position of the line.
      • y2: An integer of the 2D Y position of the end position of the line.
    • polygon Polygon. The arguments are as follows.
      • { int x1, int y1, int x2, int y2, ... } 
      • int x1, int y1, int x2, int y2, ... 
      • x1: An integer of the 2D X position of the node1 position of the polygon.
      • y1: An integer of the 2D Y position of the node1 position of the polygon.
      • x2: An integer of the 2D X position of the node2 position of the polygon.
      • y2: An integer of the 2D Y position of the node2 position of the polygon.
      • ...: And so on.
      • string points
      • points: A string includes the points like "'x1 y1 x2 y2 ...".
    • polyline Polyline. The arguments are as follows.
      •  { int x1, int y1, int x2, int y2, ... } 
      •  int x1, int y1, int x2, int y2, ... 
      • x1: An integer of the 2D X position of the node1 position of the polyline.
      • y1: An integer of the 2D Y position of the node1 position of the polyline.
      • x2: An integer of the 2D X position of the node2 position of the polyline.
      • y2: An integer of the 2D Y position of the node2 position of the polyline.
      • ...: And so on.
      • string points
      • points: A string includes the points like "x1 y1 x2 y2 ...".
    • path: Path. The arguments are as follows.
      • table pathTable 
      • pathTable: A table includes path data.
      • string pathString 
      • pathString: A string includes path data.
    • ellipse: Ellipse. The arguments are as follows.
      • int cx, int cy, float rx, float ry 
      • cx: An integer of the center 2D X position of the ellipse.
      • cy: An integer of the center 2D Y position of the ellipse.
      • rx: A float of the radius of the ellipse on the x axis.
      • ry: A float of the radius of the ellipse on the y axis.

Returns

  • Returns xmlnode if created successfully, 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) -- 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

Requirements

Minimum server version n/a
Minimum client version 1.5.8-9.20979

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.5.8-9.20979" />

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

Plugin

Blur Box

Canvas

Chart

Circle

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Rounded Rectangle

Screen Source

SVG

Tooltips