magickwand-crystal alternatives and similar shards
Based on the "Low level bindings" category.
Alternatively, view magickwand-crystal alternatives based on common mentions on social networks and blogs.
-
myhtml
Fast HTML5 Parser with css selectors for Crystal language -
posix
POSIX/C bindings generator for the Crystal programming language -
termbox-crystal
Bindings, wrapper, and utilities for termbox (terminal interface library) in Crystal -
java.cr
Java Native Interface (JNI) bindings (and generator) for Crystal -
wkhtmltopdf-crystal
Crystal C bindings and wrapper for libwkhtmltox library -
serialport.cr
Crystal bindings for libserialport: cross-platform library for accessing serial ports. -
crystal-liblmdb
Crystal language bindings for the Symas LMDB database -
crystal-libpcap
Crystal bindings for libpcap - experimental
Access the most powerful time series database as a service
Do you think we are missing an alternative of magickwand-crystal or a related project?
README
MagickWand for Crystal 
Crystal C bindings for MagickWand library, an interface to use the ImageMagick image processing libraries - see www.imagemagick.org
NOTE: Base on ImageMagick-7.0.8-66. MagickWand is a quite large library, if you find something missing contact me
Requirements
- libMagickWand must be installed
- pkg-config must be available
Installation
- Add this to your application's
shard.yml
:
dependencies:
magickwand-crystal:
github: blocknotes/magickwand-crystal
Usage
Get image info:
require "magickwand-crystal"
LibMagick.magickWandGenesis # lib init
wand = LibMagick.newMagickWand # lib init
if LibMagick.magickReadImage( wand, "test.png" )
puts LibMagick.magickGetImageWidth wand
puts LibMagick.magickGetImageHeight wand
end
LibMagick.destroyMagickWand wand # lib deinit
LibMagick.magickWandTerminus # lib deinit
Scale image and save in Jpeg format:
require "magickwand-crystal"
# ... lib init ...
LibMagick.magickReadImage wand, "test.png"
LibMagick.magickScaleImage wand, 320, 240
LibMagick.magickWriteImage wand, "test2.jpg"
# ... lib deinit ...
Convert to grayscale:
require "magickwand-crystal"
# ... lib init ...
LibMagick.magickReadImage wand, "test.jpg"
LibMagick.magickTransformImageColorspace wand, LibMagick::ColorspaceType::GRAYColorspace
LibMagick.magickWriteImage wand, "grayscale.jpg"
# ... lib deinit ...
More examples
See examples folder. There is also an example to generate an image on the fly with Kemal.
Documentation
The functions mapped have the same names of the MagickWand C library but with the first letter in lowercase.
Example: MagickWandGenesis
=> LibMagick.magickWandGenesis
Notes
Branches with different ImageMagick version:
- im_6.9.7-3
- im_7.0.4-1
The Crystal Magic Wand ! :)
Sounds funny but I hope you find it a useful piece of software.
Contributors
- Mattia Roccoberton - creator, maintainer, Crystal fan :)