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
- Host: GitHub
- URL: https://github.com/chifisource/oliveimages.jl
- Owner: ChifiSource
- License: mit
- Created: 2023-08-08T00:44:14.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-17T12:28:53.000Z (over 2 years ago)
- Last Synced: 2025-02-25T18:52:27.005Z (over 1 year ago)
- Language: Julia
- Size: 45.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```