summaryrefslogtreecommitdiff
path: root/src/lua5
diff options
context:
space:
mode:
authorscuri <scuri>2009-12-25 22:43:49 +0000
committerscuri <scuri>2009-12-25 22:43:49 +0000
commitfe7fa107ff1fddbd12901a861148b154a4ab013d (patch)
tree7fe1055f4295f501c8dc7f635a578ffb54a32999 /src/lua5
parentbfaf1f4433372b13eb1b50c3be2c27c547cd9af5 (diff)
New: function imImageCopyPlane.
Diffstat (limited to 'src/lua5')
-rw-r--r--src/lua5/imlua_image.c25
1 files changed, 24 insertions, 1 deletions
diff --git a/src/lua5/imlua_image.c b/src/lua5/imlua_image.c
index 40b1e9c..32a3080 100644
--- a/src/lua5/imlua_image.c
+++ b/src/lua5/imlua_image.c
@@ -2,7 +2,7 @@
* \brief IM Lua 5 Binding
*
* See Copyright Notice in im_lib.h
- * $Id: imlua_image.c,v 1.5 2009/09/25 18:40:31 scuri Exp $
+ * $Id: imlua_image.c,v 1.6 2009/12/25 22:43:50 scuri Exp $
*/
#include <string.h>
@@ -167,6 +167,28 @@ static int imluaImageCopyData (lua_State *L)
}
/*****************************************************************************\
+ image:CopyPlane()
+\*****************************************************************************/
+static int imluaImageCopyPlane(lua_State *L)
+{
+ imImage* src_image = imlua_checkimage(L, 1);
+ int src_plane = luaL_checkint(L, 2);
+ imImage* dst_image = imlua_checkimage(L, 3);
+ int dst_plane = luaL_checkint(L, 4);
+
+ imlua_match(L, src_image, dst_image);
+
+ if (src_plane < 0 || src_plane >= src_image->depth)
+ luaL_argerror(L, 2, "invalid source channel, out of bounds");
+
+ if (dst_plane < 0 || dst_plane >= dst_image->depth)
+ luaL_argerror(L, 4, "invalid destiny channel, out of bounds");
+
+ imImageCopyPlane(src_image, src_plane, dst_image, dst_plane);
+ return 0;
+}
+
+/*****************************************************************************\
image:Duplicate()
\*****************************************************************************/
static int imluaImageDuplicate (lua_State *L)
@@ -992,6 +1014,7 @@ static const luaL_reg imimage_metalib[] = {
{"Reshape", imluaImageReshape},
{"Copy", imluaImageCopy},
{"CopyData", imluaImageCopyData},
+ {"CopyPlane", imluaImageCopyPlane},
{"Duplicate", imluaImageDuplicate},
{"Clone", imluaImageClone},
{"SetAttribute", imluaImageSetAttribute},