Set default encoding to R8G8B8 RAW

This the most trivial RGB encoding the encoder supports. Setting
it prevents a crash related to BW8 only supporting RAW encoding.
This commit is contained in:
Nils Dagsson Moskopp 2022-05-15 19:29:05 +02:00
parent 759b0a188f
commit 5b79bc6fb7
No known key found for this signature in database
GPG Key ID: A3BC671C35191080
1 changed files with 2 additions and 2 deletions

View File

@ -340,8 +340,8 @@ end
function image:save(filename, properties)
local properties = properties or {}
properties.colors = properties.colors or "RGB"
properties.compression = properties.compression or "RLE"
properties.pixel_depth = properties.pixel_depth or 16
properties.compression = properties.compression or "RAW"
properties.pixel_depth = properties.pixel_depth or 24
self:encode(properties)