浏览代码

Fix handling for CMYK JPEG

nagadomi 9 年之前
父节点
当前提交
bbd0ff39ad
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      lib/image_loader.lua

+ 3 - 0
lib/image_loader.lua

@@ -46,6 +46,9 @@ function image_loader.decode_byte(blob)
       local alpha = nil
       
       im:fromBlob(blob, #blob)
+      if im:colorspace() == "CMYK" then
+	 im:colorspace("RGB")
+      end
       -- FIXME: How to detect that a image has an alpha channel?
       if blob:sub(1, 4) == "\x89PNG" or blob:sub(1, 3) == "GIF" then
 	 -- split alpha channel