diff options
| author | Mike Wey | 2012-03-20 17:17:18 +0100 |
|---|---|---|
| committer | Mike Wey | 2012-03-20 17:17:18 +0100 |
| commit | 8e640a07aa4c279872bfe671f14c32bea8b78052 (patch) | |
| tree | 1610be927ac69bca29b3ed87f44d668f6a6e8231 | |
| parent | 19dd341ff1505f0e599e67b8da17810efddaa9b7 (diff) | |
ImageMagick 6.7.6ImageMagick_6.7.6
| -rw-r--r-- | dmagick/c/image.d | 12 | ||||
| -rw-r--r-- | dmagick/c/morphology.d | 3 | ||||
| -rw-r--r-- | dmagick/c/statistic.d | 3 |
3 files changed, 15 insertions, 3 deletions
diff --git a/dmagick/c/image.d b/dmagick/c/image.d index 4e0551c..5bf8843 100644 --- a/dmagick/c/image.d +++ b/dmagick/c/image.d @@ -104,7 +104,17 @@ extern(C) * the same size as the original and with all its original RGB data * still intact, but fully transparent. */ - TransparentAlphaChannel + TransparentAlphaChannel, + + /** + * Flatten image pixels over the background pixels. + * + * Since: ImageMagick 6.7.6. + */ + FlattenAlphaChannel, + + /** ditto */ + RemoveAlphaChannel } /** diff --git a/dmagick/c/morphology.d b/dmagick/c/morphology.d index bc27957..16918ed 100644 --- a/dmagick/c/morphology.d +++ b/dmagick/c/morphology.d @@ -155,7 +155,8 @@ extern(C) ThickenMorphology, /* Add matching pixels from image */ /* Experimental Morphology methods */ - VoronoiMorphology + VoronoiMorphology, /* distance matte channel copy nearest color */ + IterativeDistanceMorphology /* Add Kernel Value, take Minimum */ }"; return method; diff --git a/dmagick/c/statistic.d b/dmagick/c/statistic.d index ff9d37d..61ca640 100644 --- a/dmagick/c/statistic.d +++ b/dmagick/c/statistic.d @@ -75,7 +75,8 @@ extern(C) MeanEvaluateOperator, /// Add the value and divide by 2. AbsEvaluateOperator, /// Add value to pixels and return absolute value. ExponentialEvaluateOperator, /// base-e exponential function. - MedianEvaluateOperator /// Choose the median value from an image sequence. + MedianEvaluateOperator, /// Choose the median value from an image sequence. + SumEvaluateOperator /// Add value to pixels. } /** |
