DxGetTexturePixels

From Multi Theft Auto: Wiki
Revision as of 00:58, 25 January 2012 by Ccw (talk | contribs) (Created page with "{{Client function}} __NOTOC__ This function fetches the pixels from a texture element. It will work with a standard texture, render target or screen source...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function fetches the pixels from a texture element. It will work with a standard texture, render target or screen source.

Syntax

string dxGetTexturePixels( element texture [, int x, int y, int width, int height ] )

Required Arguments

  • texture : The texture element to get the pixels from

Optional Arguments

By default the pixels from the whole texture is returned. To get only a portion of the texture, define a rectangular area using all four of these optional arguments:

  • x: Rectangle left position
  • y: Rectangle top position
  • width: Rectangle width
  • height : Rectangle height

Returns

Returns a string if successful, false if invalid arguments were passed to the function.

Example

TODO

See Also