GraphicsMagick_jll.gmMethod
gm(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of gm.

Example

gm() do exe
    run(`$exe $arguments`)
end
Julia 1.3
GraphicsMagick_jll.gmMethod
gm(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of gm. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(gm()) $arguments`)
Julia 1.6