Crate magick_rust
source ·Expand description
“Safe” wrapper around the low-level bindings to ImageMagick.
Prior to using the ImageMagick system, the application should invoke
magick_wand_genesis()
, which maps directly to MagickWandGenesis
.
Likewise, when an application is done using ImageMagick, invoke the
magick_wand_terminus()
function, which maps to MagickWandTerminus
.
Re-exports§
pub use bindings::AlignType;
pub use bindings::AlphaChannelOption;
pub use bindings::AutoThresholdMethod;
pub use bindings::ChannelType;
pub use bindings::ClipPathUnits;
pub use bindings::CompositeOperator;
pub use bindings::ColorspaceType;
pub use bindings::CompressionType;
pub use bindings::DecorationType;
pub use bindings::DirectionType;
pub use bindings::DisposeType;
pub use bindings::DitherMethod;
pub use bindings::EndianType;
pub use bindings::FillRule;
pub use bindings::FilterType;
pub use bindings::GravityType;
pub use bindings::ImageType;
pub use bindings::InterlaceType;
pub use bindings::KernelInfoType;
pub use bindings::LayerMethod;
pub use bindings::LineCap;
pub use bindings::LineJoin;
pub use bindings::MagickEvaluateOperator;
pub use bindings::MagickFunction;
pub use bindings::MetricType;
pub use bindings::MorphologyMethod;
pub use bindings::OrientationType;
pub use bindings::PixelInterpolateMethod;
pub use bindings::PixelMask;
pub use bindings::RenderingIntent;
pub use bindings::ResolutionType;
pub use bindings::ResourceType;
pub use bindings::StatisticType;
pub use bindings::StretchType;
pub use bindings::StyleType;
Modules§
Structs§
- Builder, that creates instances of KernelInfo
Functions§
- This function must be called before any other ImageMagick operations are attempted. This function is safe to be called repeatedly.
- This function should be called when ImageMagick is no longer needed. This function is safe to be called repeatedly.