Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (about 1 year ago)
- Last Synced: 2024-11-08T03:09:38.033Z (3 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
![fgif](media/mandelbrot.gif)
============[![GitHub release](https://img.shields.io/github/release/jacobwilliams/FGIF.svg)](https://github.com/jacobwilliams/FGIF/releases/latest)
[![Build Status](https://github.com/jacobwilliams/FGIF/actions/workflows/CI.yml/badge.svg)](https://github.com/jacobwilliams/FGIF/actions)
[![codecov](https://codecov.io/gh/jacobwilliams/FGIF/branch/master/graph/badge.svg)](https://codecov.io/gh/jacobwilliams/FGIF)
[![last-commit](https://img.shields.io/github/last-commit/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).