Skip to content

Load images in Julia. Designed for FileIO interaction. Supports PNG and Portable Bitmap formats

License

Notifications You must be signed in to change notification settings

JuliaIO/ImageIO.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ImageIO.jl

FileIO.jl integration for image files

Julia version Run tests Codecov

Currently provides:

Installation

Install with Pkg:

pkg> add ImageIO  # Press ']' to enter te Pkg REPL mode

Usage

using FileIO
save("test.png", rand(Gray, 100, 100))
load("test.png")
save("test.ppm", rand(RGB, 100, 100))
load("test.ppm")
save("test.tiff", rand(RGB, 100, 100))
load("test.tiff")

Compatibility

This package requires Julia at least v1.3. For old Julia versions, a dummy ImageIO version v0.0.1 with no real function will be installed. In this case, you still need to install ImageMagick.jl to make FileIO.save/FileIO.load work.

About

Load images in Julia. Designed for FileIO interaction. Supports PNG and Portable Bitmap formats

Resources

License

Stars

Watchers

Forks

Languages