diff options
| -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. } /** |
