| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- return {
- summary = 'Create a new Image.',
- description = [[
- Creates a new Image. Image data can be loaded and decoded from an image file, or a raw block of
- pixels with a specified width, height, and format can be created.
- ]],
- arguments = {
- width = {
- type = 'number',
- description = 'The width of the texture.'
- },
- height = {
- type = 'number',
- description = 'The height of the texture.'
- },
- format = {
- type = 'TextureFormat',
- default = 'rgba8',
- description = 'The format of the texture\'s pixels.'
- },
- filename = {
- type = 'string',
- description = 'The filename of the image to load.'
- },
- blob = {
- type = 'Blob',
- description = 'The Blob containing image data to decode.'
- },
- data = {
- type = 'Blob',
- default = 'nil',
- description = 'Raw pixel values to use as the contents. If `nil`, the data will all be zero.'
- },
- source = {
- type = 'Image',
- description = 'The Image to clone.'
- }
- },
- returns = {
- image = {
- type = 'Image',
- description = 'The new Image.'
- }
- },
- variants = {
- {
- description = 'Load image data from a file.',
- arguments = { 'filename' },
- returns = { 'image' }
- },
- {
- description = 'Create an Image with a given size and pixel format.',
- arguments = { 'width', 'height', 'format', 'data' },
- returns = { 'image' }
- },
- {
- description = 'Clone an existing Image.',
- arguments = { 'source' },
- returns = { 'image' }
- },
- {
- description = 'Decode image data from a Blob.',
- arguments = { 'blob' },
- returns = { 'image' }
- }
- },
- notes = [[
- The supported image file formats are png, jpg, hdr, dds, ktx1, ktx2, and astc.
- DDS and KTX files can contain cubemaps and array textures, in any of the texture formats LÖVR
- supports.
- ]]
- }
|