1
0
Fork 0
mirror of synced 2024-05-17 03:12:18 +12:00

Merge branch 'master' of github.com:nagadomi/waifu2x into dev

This commit is contained in:
nagadomi 2017-02-12 17:27:33 +09:00
commit 1db2eeb788
2 changed files with 14 additions and 2 deletions

View file

@ -1,10 +1,10 @@
local gm = require 'graphicsmagick'
local ffi = require 'ffi'
local iproc = require 'iproc'
local sRGB2014 = require 'sRGB2014'
require 'pl'
local image_loader = {}
local clip_eps8 = (1.0 / 255.0) * 0.5 - (1.0e-7 * (1.0 / 255.0) * 0.5)
local clip_eps16 = (1.0 / 65535.0) * 0.5 - (1.0e-7 * (1.0 / 65535.0) * 0.5)
local background_color = 0.5
@ -51,6 +51,10 @@ function image_loader.encode_png(rgb, options)
if options.gamma then
im:gamma(options.gamma)
end
if options.icm and im.profile then
im:profile("icm", sRGB2014)
im:profile("icm", options.icm)
end
return im:depth(options.depth):format("PNG"):toString()
end
function image_loader.save_png(filename, rgb, options)
@ -70,7 +74,13 @@ function image_loader.decode_float(blob)
local gamma_lcd = 0.454545
im:fromBlob(blob, #blob)
if im.profile then
meta.icm = im:profile("icm")
if meta.icm then
im:profile("icm", sRGB2014)
im:removeProfile()
end
end
if im:colorspace() == "CMYK" then
im:colorspace("RGB")
end

2
lib/sRGB2014.lua Normal file

File diff suppressed because one or more lines are too long