All Projects → JuliaIO → ImageMagick.jl

JuliaIO / ImageMagick.jl

Licence: other
Thin Wrapper for the library ImageMagick

Programming Languages

julia
2034 projects

ImageMagick

Platform Build Status
Linux & MacOS & Windows Github Action
FreeBSD x86 Cirrus

Codecoverage Status Coveralls Status

This package provides a wrapper around ImageMagick version 6. It was split off from Images.jl to make image I/O more modular.

Installation

Add the package with

Pkg.add("ImageMagick")

Usage

After installation, ImageMagick will be used as needed if you've said

using FileIO

in your session or module. You should not generally say using ImageMagick. See FileIO for further details.

It's worth pointing out that packages such as Images.jl load FileIO for you.

Loading an image is then as simple as

img = load(filename[; view=false])

Set view=true to reduce memory consumption when loading large files, possibly at some slight cost in terms of performance of future operations.

Advanced usage

The environment variable MAGICK_THREAD_LIMIT can be used to throttle multithreading.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].