Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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).