-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathimage.lua
More file actions
27 lines (22 loc) · 709 Bytes
/
Copy pathimage.lua
File metadata and controls
27 lines (22 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
-- Provides an interface to decode encoded image data.
--
-- @module image
--
---
-- Create a new ImageData object.
-- @function [parent = #image] newImageData
-- @param #number width The width of the ImageData.
-- @param #number height The height of the ImageData.
-- @return imageData The new ImageData object.
---
-- Create a new ImageData object.
-- @function [parent = #image] newImageData
-- @param #string filename The filename of the image file.
-- @return imageData The new ImageData object.
---
-- Create a new ImageData object.
-- @function [parent = #image] newImageData
-- @param data The encoded data to decode into image data.
-- @return imageData The new ImageData object.
return nil