summaryrefslogtreecommitdiff
path: root/tex/context/base/mkxl/libs-imp-imagemagick.lmt
blob: cce632eb38975c56f05784636551fc91d1a0fb05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
if not modules then modules = { } end modules ['libs-imp-imagemagick'] = {
    version   = 1.001,
    comment   = "companion to luat-lib.mkxl",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files",
}

-- \registerctxluafile{libs-imp-imagemagick}{autosuffix}
-- \starttext
--     \startluacode
--         utilities.imagemagick.convert {
--             inputname  = "hacker.jpg",
--             outputname = "m_k_v_i_hacker.png",
--             options    = { "-rotate", 90, "-noise", 2 },
--         }
--         context.externalfigure { "hacker.png" }
--     \stopluacode
-- \stoptext

local libname = "imagemagick"
local libfile = { "CORE_RL_MagickCore_", "CORE_RL_MagickWand_" }

local imlib = resolvers.libraries.validoptional(libname)

if not imlib then return end

local function okay()
    if resolvers.libraries.optionalloaded(libname,libfile) then
        okay = function() return true end
    else
        okay = function() return false end
    end
    return okay()
end

local imagemagick     = utilities.imagemagick or { }
utilities.imagemagick = imagemagick

local im_execute = imlib.execute
local nofruns    = 0
local report     = logs.reporter(libname)

function imagemagick.convert(specification)
    if okay() then
        --
        nofruns = nofruns + 1
        statistics.starttiming(imagemagick)
        --
        local inputname  = specification.inputname
        if not inputname or inputname == "" then
            report("invalid run %s, no inputname specified",nofruns)
            statistics.stoptiming(imagemagick)
            return false
        end
        local outputname = specification.outputname
        if not outputname or outputname == "" then
            outputname = file.replacesuffix(inputname,"pdf")
        end
        --
        if not lfs.isfile(inputname) then
            report("invalid run %s, input file %a is not found",nofruns,inputname)
            statistics.stoptiming(imagemagick)
            return false
        end
        --
        report("run %s, input file %a, outputfile %a",nofruns,inputname,outputname)
        --
        specification.inputfile  = inputname
        specification.outputfile = outputname
        --
        local okay, detail = im_execute(specification)
        if not okay then
            report("error %a (make sure options start with one -) ",detail)
        end
        --
        statistics.stoptiming(imagemagick)
    end
end

function imagemagick.statistics(feedback)
    local runtime = statistics.elapsedtime(imagemagick)
    if feedback then
        report("nofruns %s, runtime %s",nofruns,runtime)
    else
        return {
            runtime = runtime,
            nofruns = nofruns,
        }
    end
end

-- imagemagick.convert { inputname = "t:/sources/hacker.jpg", outputname = "e:/tmp/hacker.png" }
-- imagemagick.statistics(true)