Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mfinelli/setup-imagemagick
- Owner: mfinelli
- License: apache-2.0
- Created: 2021-03-13T17:12:32.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-25T17:16:16.000Z (about 1 month ago)
- Last Synced: 2024-11-25T18:40:39.929Z (about 1 month ago)
- Topics: github-actions, imagemagick
- Language: TypeScript
- Homepage: https://github.com/marketplace/actions/setup-imagemagick
- Size: 1.28 MB
- Stars: 13
- Watchers: 2
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
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
```