From 5b79bc6fb7c409b631d7c2c88bfbbadc78269081 Mon Sep 17 00:00:00 2001 From: Nils Dagsson Moskopp Date: Sun, 15 May 2022 19:29:05 +0200 Subject: [PATCH] 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. --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 0c604afbd..3aaedbe71 100644 --- a/init.lua +++ b/init.lua @@ -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)