love.graphics.getMaxImageSize

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Gets the max supported width or height of Images and Canvases.

Attempting to create an Image or a Canvas with a width *or* height greater than this number will give an error.

The returned number depends on the system running the code. It is safe to assume it will never be less than 1024 and will likely be 2048 or greater.

Function

Synopsis

size = love.graphics.getMaxImageSize( )

Arguments

None.

Returns

number size
The max supported width or height of Images and Canvases.

Notes

There is an online database which has collected info about the max image size for various systems. A good rule of thumb is to never create Images or Canvases with widths or heights greater than 2048.

See Also


Other Languages