summaryrefslogtreecommitdiff
path: root/dmagick/c/statistic.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/c/statistic.d')
-rw-r--r--dmagick/c/statistic.d10
1 files changed, 9 insertions, 1 deletions
diff --git a/dmagick/c/statistic.d b/dmagick/c/statistic.d
index 8a3ffd7..0bd7841 100644
--- a/dmagick/c/statistic.d
+++ b/dmagick/c/statistic.d
@@ -85,7 +85,15 @@ extern(C)
ChannelStatistics* GetImageChannelStatistics(const(Image)*, ExceptionInfo*);
- Image* EvaluateImages(const(Image)*, const MagickEvaluateOperator, ExceptionInfo*);
+ static if ( MagickLibVersion < 0x661 )
+ {
+ Image* AverageImages(const(Image)*, ExceptionInfo*);
+ }
+
+ static if ( MagickLibVersion >= 0x661 )
+ {
+ Image* EvaluateImages(const(Image)*, const MagickEvaluateOperator, ExceptionInfo*);
+ }
MagickBooleanType EvaluateImage(Image*, const MagickEvaluateOperator, const double, ExceptionInfo*);
MagickBooleanType EvaluateImageChannel(Image*, const ChannelType, const MagickEvaluateOperator, const double, ExceptionInfo*);