Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mfinelli/setup-imagemagick

github action to install imagemagick
https://github.com/mfinelli/setup-imagemagick

github-actions imagemagick

Last synced: about 1 month ago
JSON representation

github action to install imagemagick

Awesome Lists containing this project

README

        

# setup-imagemagick

This action downloads the latest ImageMagick binary and adds it to the PATH.

## Inputs

| Name | Type | Description |
| ------------------ | ------- | ------------------------------------------------------------------------------------ |
| `cache` | Boolean | Cache the `magick` download (Ubuntu runners only) |
| `install-libfuse2` | Boolean | Automatically install `libfuse2` so `magick` AppImage works on Ubuntu out-of-the-box |

## Outputs

## Example usage

```yaml
steps:
- uses: mfinelli/setup-imagemagick@v5
- run: magick input.jpg -resize 100x100 output.jpg
```