DgsRemoteImageRequest: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ This function loads image from a URL with existing dgs remote image. ==Syntax== <syntaxhighlight lang="lua"> element dgsRemoteImageRequest( el...")
 
No edit summary
 
Line 5: Line 5:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
element dgsRemoteImageRequest( element remoteImage, string URL )
bool dgsRemoteImageRequest( element remoteImage, string URL )
</syntaxhighlight>  
</syntaxhighlight>  


Line 19: Line 19:
DGS = exports.dgs --get exported functions from dgs
DGS = exports.dgs --get exported functions from dgs


local texture = DGS:dgsCreateRemoteImage("https://wiki.multitheftauto.com/images/thumb/2/2b/DGS_Logo.png/800px-DGS_Logo.png") --Source Texture
local remoteImage = DGS:dgsCreateRemoteImage("https://wiki.multitheftauto.com/images/thumb/2/2b/DGS_Logo.png/800px-DGS_Logo.png") --Source Texture
local image = DGS:dgsCreateImage(0, 0, 400, 200, texture, false) -- You won't get the texture
local image = DGS:dgsCreateImage(0, 0, 400, 200, remoteImage, false) -- You won't get the texture
DGS:dgsCenterElement(image) -- center image
DGS:dgsCenterElement(image) -- center image
addEventHandler("onDgsRemoteImageLoad",imageTexture ,function()
addEventHandler("onDgsRemoteImageLoad", remoteImage, function()
setTimer(function()
setTimer(function()
DGS:dgsRemoteImageRequest(texture,"https://wiki.multitheftauto.com/images/c/c0/Dx_Dgs.jpg") --Load a new image
DGS:dgsRemoteImageRequest(remoteImage,"https://wiki.multitheftauto.com/images/c/c0/Dx_Dgs.jpg") --Load a new image
end,1000,1)
end,1000,1)
end,false)
end,false)

Latest revision as of 09:31, 17 January 2021

This function loads image from a URL with existing dgs remote image.

Syntax

bool dgsRemoteImageRequest( element remoteImage, string URL )

Required Arguments

  • remoteImage : An element of remote image you want to operate.
  • url: An image URL.

Returns

Returns true if successful, false otherwise.

Example

DGS = exports.dgs --get exported functions from dgs

local remoteImage = DGS:dgsCreateRemoteImage("https://wiki.multitheftauto.com/images/thumb/2/2b/DGS_Logo.png/800px-DGS_Logo.png") --Source Texture
local image = DGS:dgsCreateImage(0, 0, 400, 200, remoteImage, false) -- You won't get the texture
DGS:dgsCenterElement(image) -- center image
addEventHandler("onDgsRemoteImageLoad", remoteImage, function()
	setTimer(function()
		DGS:dgsRemoteImageRequest(remoteImage,"https://wiki.multitheftauto.com/images/c/c0/Dx_Dgs.jpg") --Load a new image
	end,1000,1)
end,false)

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