https://github.com/naithar/magickwand
Swift wrapper for ImageMagick (MagickWand) for Linux and MacOS
https://github.com/naithar/magickwand
imagemagick linux mac-osx magickwand swift
Last synced: about 1 year ago
JSON representation
Swift wrapper for ImageMagick (MagickWand) for Linux and MacOS
- Host: GitHub
- URL: https://github.com/naithar/magickwand
- Owner: naithar
- License: mit
- Created: 2016-08-20T15:16:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-04-07T19:57:58.000Z (about 6 years ago)
- Last Synced: 2025-05-07T08:13:36.524Z (about 1 year ago)
- Topics: imagemagick, linux, mac-osx, magickwand, swift
- Language: Swift
- Homepage:
- Size: 157 KB
- Stars: 50
- Watchers: 4
- Forks: 15
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Disclaimer
Project is currently under development.
Some feature may not work as expected or may not work at all.
Use at your own risk.
PRs and bugreports are more than welcome.
# Swift MagickWand
[](https://swift.org)
[](https://www.imagemagick.org/script/index.php)
[](/LICENSE)
[](https://travis-ci.org/naithar/MagickWand)
[](https://codebeat.co/projects/github-com-naithar-magickwand)
[](https://codeclimate.com/github/naithar/MagickWand)
[](https://codecov.io/gh/naithar/MagickWand)


This package supports 6.9.x version of ImageMagick.
## Intallation
### Shared
It should be possible it install `MagickWand` with required dependencies using script at `/common/install-imagemagick.sh`
```
curl -O -L https://github.com/naithar/MagickWand/raw/master/common/install-imagemagick.sh
bash install-imagemagick.sh
```
### Mac OSX
```
brew install imagemagick@6
```
### Linux
##### Install Dependencies
```
sudo apt-get -y build-dep imagemagick
```
##### Install ImageMagick
```
curl -OL https://www.imagemagick.org/download/releases/ImageMagick-6.9.6-8.tar.xz
tar xf ImageMagick-6.9.6-8.tar.xz
cd ImageMagick-6.9.6-8
./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --disable-openmp --with-gs-font-dir=/usr/local/share/ghostscript/fonts
make
sudo make install
```
### Add Package
Add this package to `dependencies` in your `Package.swift` file.
```
.Package(url: "https://github.com/naithar/MagickWand.git", majorVersion: 0)
```
## Building and Testing
### Shared
```
eval $(echo 'swift build -Xlinker -L/usr/local/lib/' `Magick-config --cflags` | sed 's/\(-[DI]\)/-Xcc \1/g')
eval $(echo 'swift test -Xlinker -L/usr/local/lib/' `Magick-config --cflags` | sed 's/\(-[DI]\)/-Xcc \1/g')
```
### Mac OSX
```
swift build -Xswiftc -I/usr/local/opt/imagemagick@6/include/ImageMagick-6 -Xlinker -L/usr/local/opt/imagemagick@6/lib -Xcc -DMAGICKCORE_HDRI_ENABLE=0 -Xcc -DMAGICKCORE_QUANTUM_DEPTH=16
swift test -Xswiftc -I/usr/local/opt/imagemagick@6/include/ImageMagick-6 -Xlinker -L/usr/local/opt/imagemagick@6/lib -Xcc -DMAGICKCORE_HDRI_ENABLE=0 -Xcc -DMAGICKCORE_QUANTUM_DEPTH=16
```
### Linux
```
swift build -Xcc -I/usr/local/include/ImageMagick-6/ -Xlinker -L/usr/local/lib/ -Xcc -DMAGICKCORE_HDRI_ENABLE=0 -Xcc -DMAGICKCORE_QUANTUM_DEPTH=16
swift test -Xcc -I/usr/local/include/ImageMagick-6/ -Xlinker -L/usr/local/lib/ -Xcc -DMAGICKCORE_HDRI_ENABLE=0 -Xcc -DMAGICKCORE_QUANTUM_DEPTH=16
```
## XCode Setup
Generate XCode project using this command:
```
swift package -Xlinker -L/usr/local/lib/ -Xcc -DMAGICKCORE_HDRI_ENABLE=0 -Xcc -DMAGICKCORE_QUANTUM_DEPTH=16 -Xswiftc -I/usr/local/include/ImageMagick-6 -Xcc -I/usr/local/include/ImageMagick-6 generate-xcodeproj
```
Both `-Xcc` and `-Xswiftc` flags can be requested using `Magick-config --cflags` command