浏览代码

Remove PNG compression option

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

+ 1 - 1
lib/image_loader.lua

@@ -43,7 +43,7 @@ function image_loader.encode_png(rgb, depth, inplace)
       im = gm.Image(rgb, "I", "DHW")
       -- im:colorspace("GRAY") -- it does not work
    end
-   return im:depth(depth):format("PNG"):toString(9)
+   return im:depth(depth):format("PNG"):toString()
 end
 function image_loader.save_png(filename, rgb, depth, inplace)
    local blob = image_loader.encode_png(rgb, depth, inplace)