DxConvertPixels

From Multi Theft Auto: Wiki
Revision as of 01:14, 25 January 2012 by Ccw (talk | contribs) (Created page with "{{Client function}} __NOTOC__ This function converts pixels from one format to another. ==Syntax== <syntaxhighlight lang="lua"> string newPixels = dxConvertPixels( string pixels, string newFo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function converts pixels from one format to another.

Syntax

string newPixels = dxConvertPixels( string pixels, string newFormat [, int quality ] )

Required Arguments

  • pixels : The pixels to convert the format of
  • newFormat : The new format required ('plain' or 'png' or 'jpeg')

Optional Arguments

  • quality : The quality of the returned pixels if the new format is 'jpeg'

Returns

Returns a copy of the pixels in the new format, or false if invalid arguments were passed to the function.

Example

TODO

See Also