https://github.com/jacobwilliams/fgif
Create Animated GIFs with Fortran
https://github.com/jacobwilliams/fgif
animated-gifs fortran fortran-package-manager gif gif-animation
Last synced: 2 months ago
JSON representation
Create Animated GIFs with Fortran
- Host: GitHub
- URL: https://github.com/jacobwilliams/fgif
- Owner: jacobwilliams
- License: bsd-3-clause
- Created: 2014-07-29T03:17:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-01-07T03:14:59.000Z (over 1 year ago)
- Last Synced: 2024-12-30T13:57:13.222Z (4 months ago)
- Topics: animated-gifs, fortran, fortran-package-manager, gif, gif-animation
- Language: Fortran
- Homepage:
- Size: 777 KB
- Stars: 16
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

============[](https://github.com/jacobwilliams/FGIF/releases/latest)
[](https://github.com/jacobwilliams/FGIF/actions)
[](https://codecov.io/gh/jacobwilliams/FGIF)
[](https://github.com/jacobwilliams/FGIF/commits/master)FGIF: Create Animated GIFs with Fortran
### Description
Just a simple module that can be used to create GIFs and animated GIFs with Fortran.
Based on the public domain code at: http://fortranwiki.org/fortran/show/writegif### Compiling
A `fpm.toml` file is provided for compiling `fgif` with the [Fortran Package Manager](https://github.com/fortran-lang/fpm). For example, to build:
```
fpm build --profile release --flag "-fopenmp"
```And to run the unit tests:
```
fpm test --profile release --flag "-fopenmp"
```To use `fgif` within your fpm project, add the following to your `fpm.toml` file:
```toml
[dependencies]
fgif = { git="https://github.com/jacobwilliams/fgif.git" }
```### Documentation
The latest API documentation can be found [here](http://jacobwilliams.github.io/FGIF/). This was generated from the source code using [FORD](https://github.com/Fortran-FOSS-Programmers/ford).