Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danramteke/magickbird
Swifty wrapper around ImageMagick. Requires ImageMagick.
https://github.com/danramteke/magickbird
imagemagick imagemagick-wrapper swift
Last synced: 3 days ago
JSON representation
Swifty wrapper around ImageMagick. Requires ImageMagick.
- Host: GitHub
- URL: https://github.com/danramteke/magickbird
- Owner: danramteke
- License: mit
- Created: 2019-03-22T16:03:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-26T15:41:45.000Z (over 2 years ago)
- Last Synced: 2024-12-09T22:45:31.560Z (about 1 month ago)
- Topics: imagemagick, imagemagick-wrapper, swift
- Language: C
- Homepage:
- Size: 30.6 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MagickBird
MagickWand library for Swift.
Note if building for `arm64` (aka the new M1 chip), add `--arch arm64` to the end of `swift build` or `swift run`
## Getting Started
Use `MagickBirdContext`, which will open a `MagickWandGenesis` and close `MagickWandTerminus` around your code:
```
MagickBirdContext {
Tiler(inputPath: "./output/kitten.jpg", outputPath: "./output/").tile(levels: (10...13))
}
```## Similar Projects / Inspiration
1. https://github.com/naithar/MagickWand - uses ImageMagick 6
2. https://mikemikina.com/blog/watermarking-photos-with-imagemagick-vapor-3-and-swift-on-macos-and-linux/ - how to setup the library linking
3. https://github.com/novi/SwiftMagickWand - super simple