From af5bf879aa2900f22bb63199858f66bfc38b88e4 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Wed, 27 Feb 2013 10:39:09 +0100 Subject: [PATCH] - add image flip API support --- ext/gd/libgd/gd.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ext/gd/libgd/gd.h b/ext/gd/libgd/gd.h index 8aedc2c38c..c4a47af7fd 100644 --- a/ext/gd/libgd/gd.h +++ b/ext/gd/libgd/gd.h @@ -682,6 +682,14 @@ int gdImageSmooth(gdImagePtr im, float weight); /* Image comparison definitions */ int gdImageCompare(gdImagePtr im1, gdImagePtr im2); +void gdImageFlipHorizontal(gdImagePtr im); +void gdImageFlipVertical(gdImagePtr im); +void gdImageFlipBoth(gdImagePtr im); + +#define GD_FLIP_HORINZONTAL 1 +#define GD_FLIP_VERTICAL 2 +#define GD_FLIP_BOTH 3 + #define GD_CMP_IMAGE 1 /* Actual image IS different */ #define GD_CMP_NUM_COLORS 2 /* Number of Colours in pallette differ */ #define GD_CMP_COLOR 4 /* Image colours differ */ -- 2.40.0