An open API service indexing awesome lists of open source software.

https://github.com/chifisource/oliveimages.jl

Image files for olive
https://github.com/chifisource/oliveimages.jl

Last synced: 3 months ago
JSON representation

Image files for olive

Awesome Lists containing this project

README

          



The `OliveImages` module provides [Olive](https://github.com/ChifiSource/Olive.jl) with the ability to read and work with image files, including
- SVG files
- PNG files
- GIF files
- and JPG files.
```julia
using Pkg

Pkg.add("OliveImages"
```
- **note** `OliveImages` is an `Olive` extension; it requires [olive](https://github.com/ChifiSource/Olive.jl).

Add this package to your `Olive` by loading it before entering headless mode, or adding it via the `:home` directory in `Olive`. Learn more at [installing extensions](https://chifidocs.com/olive/Olive/installing-extensions).
```julia
using OliveImages; using OliveImages.Olive; Olive.start(headless = true)
```