2008-09-11 14:39:47 +02:00
|
|
|
/*
|
|
|
|
* image.c - image object
|
|
|
|
*
|
2009-04-09 11:38:56 +02:00
|
|
|
* Copyright © 2008-2009 Julien Danjou <julien@danjou.info>
|
2008-09-11 14:39:47 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "structs.h"
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
DO_LUA_TOSTRING(image_t, image, "image");
|
|
|
|
|
|
|
|
static int
|
|
|
|
luaA_image_gc(lua_State *L)
|
|
|
|
{
|
|
|
|
image_t *p = luaL_checkudata(L, 1, "image");
|
|
|
|
imlib_context_set_image(p->image);
|
|
|
|
imlib_free_image();
|
|
|
|
p_delete(&p->data);
|
|
|
|
return 0;
|
|
|
|
}
|
2008-09-11 14:39:47 +02:00
|
|
|
|
2008-09-17 16:38:38 +02:00
|
|
|
static const char *
|
|
|
|
image_imlib_load_strerror(Imlib_Load_Error e)
|
|
|
|
{
|
|
|
|
switch(e)
|
|
|
|
{
|
|
|
|
case IMLIB_LOAD_ERROR_FILE_DOES_NOT_EXIST:
|
|
|
|
return "no such file or directory";
|
|
|
|
case IMLIB_LOAD_ERROR_FILE_IS_DIRECTORY:
|
|
|
|
return "file is a directory";
|
|
|
|
case IMLIB_LOAD_ERROR_PERMISSION_DENIED_TO_READ:
|
|
|
|
return "read permission denied";
|
|
|
|
case IMLIB_LOAD_ERROR_NO_LOADER_FOR_FILE_FORMAT:
|
|
|
|
return "no loader for file format";
|
|
|
|
case IMLIB_LOAD_ERROR_PATH_TOO_LONG:
|
|
|
|
return "path too long";
|
|
|
|
case IMLIB_LOAD_ERROR_PATH_COMPONENT_NON_EXISTANT:
|
|
|
|
return "path component non existant";
|
|
|
|
case IMLIB_LOAD_ERROR_PATH_COMPONENT_NOT_DIRECTORY:
|
|
|
|
return "path compoment not a directory";
|
|
|
|
case IMLIB_LOAD_ERROR_PATH_POINTS_OUTSIDE_ADDRESS_SPACE:
|
|
|
|
return "path points oustide address space";
|
|
|
|
case IMLIB_LOAD_ERROR_TOO_MANY_SYMBOLIC_LINKS:
|
|
|
|
return "too many symbolic links";
|
|
|
|
case IMLIB_LOAD_ERROR_OUT_OF_MEMORY:
|
|
|
|
return "out of memory";
|
|
|
|
case IMLIB_LOAD_ERROR_OUT_OF_FILE_DESCRIPTORS:
|
|
|
|
return "out of file descriptors";
|
|
|
|
case IMLIB_LOAD_ERROR_PERMISSION_DENIED_TO_WRITE:
|
|
|
|
return "write permission denied";
|
|
|
|
case IMLIB_LOAD_ERROR_OUT_OF_DISK_SPACE:
|
|
|
|
return "out of disk space";
|
|
|
|
case IMLIB_LOAD_ERROR_UNKNOWN:
|
|
|
|
return "unknown error, that's really bad";
|
|
|
|
case IMLIB_LOAD_ERROR_NONE:
|
|
|
|
return "no error, oops";
|
|
|
|
}
|
|
|
|
|
|
|
|
return "unknown error";
|
|
|
|
}
|
|
|
|
|
2008-09-17 17:28:38 +02:00
|
|
|
/** Recompute the ARGB32 data from an image.
|
|
|
|
* \param image The image.
|
|
|
|
* \return Data.
|
2008-09-17 16:38:38 +02:00
|
|
|
*/
|
2008-09-17 17:28:38 +02:00
|
|
|
static void
|
|
|
|
image_compute(image_t *image)
|
2008-09-17 16:38:38 +02:00
|
|
|
{
|
2008-09-17 17:28:38 +02:00
|
|
|
int size, i;
|
2008-09-17 16:38:38 +02:00
|
|
|
uint32_t *data;
|
|
|
|
double alpha;
|
2008-09-17 17:28:38 +02:00
|
|
|
uint8_t *dataimg;
|
2008-09-17 16:38:38 +02:00
|
|
|
|
2008-09-17 17:28:38 +02:00
|
|
|
imlib_context_set_image(image->image);
|
2008-09-17 16:38:38 +02:00
|
|
|
|
2008-09-17 17:28:38 +02:00
|
|
|
data = imlib_image_get_data_for_reading_only();
|
2008-09-17 16:38:38 +02:00
|
|
|
|
2008-09-17 17:28:38 +02:00
|
|
|
image->width = imlib_image_get_width();
|
|
|
|
image->height = imlib_image_get_height();
|
2008-09-17 16:38:38 +02:00
|
|
|
|
2008-09-17 17:28:38 +02:00
|
|
|
size = image->width * image->height;
|
2008-09-17 16:38:38 +02:00
|
|
|
|
2008-12-29 15:39:31 +01:00
|
|
|
p_realloc(&image->data, size * 4);
|
|
|
|
dataimg = image->data;
|
2008-09-17 16:38:38 +02:00
|
|
|
|
|
|
|
for(i = 0; i < size; i++, dataimg += 4)
|
|
|
|
{
|
|
|
|
dataimg[3] = (data[i] >> 24) & 0xff; /* A */
|
|
|
|
/* cairo wants pre-multiplied alpha */
|
|
|
|
alpha = dataimg[3] / 255.0;
|
|
|
|
dataimg[2] = ((data[i] >> 16) & 0xff) * alpha; /* R */
|
|
|
|
dataimg[1] = ((data[i] >> 8) & 0xff) * alpha; /* G */
|
|
|
|
dataimg[0] = (data[i] & 0xff) * alpha; /* B */
|
|
|
|
}
|
2008-09-17 17:28:38 +02:00
|
|
|
}
|
2008-09-17 16:38:38 +02:00
|
|
|
|
2008-09-17 17:28:38 +02:00
|
|
|
/** Create a new image from ARGB32 data.
|
|
|
|
* \param width The image width.
|
|
|
|
* \param height The image height.
|
|
|
|
* \param data The image data.
|
2009-04-09 11:38:56 +02:00
|
|
|
* \return 1 if an image has been pushed on stack, 0 otherwise.
|
2008-09-17 17:28:38 +02:00
|
|
|
*/
|
2009-04-09 11:38:56 +02:00
|
|
|
int
|
2008-09-17 17:28:38 +02:00
|
|
|
image_new_from_argb32(int width, int height, uint32_t *data)
|
|
|
|
{
|
|
|
|
Imlib_Image imimage;
|
2008-09-17 16:38:38 +02:00
|
|
|
|
2008-12-16 16:44:25 +01:00
|
|
|
if((imimage = imlib_create_image_using_copied_data(width, height, data)))
|
2008-09-17 17:28:38 +02:00
|
|
|
{
|
2008-12-18 17:39:41 +01:00
|
|
|
imlib_context_set_image(imimage);
|
|
|
|
imlib_image_set_has_alpha(true);
|
2009-04-09 11:38:56 +02:00
|
|
|
image_t *image = image_new(globalconf.L);
|
2008-09-17 17:28:38 +02:00
|
|
|
image->image = imimage;
|
|
|
|
image_compute(image);
|
2009-04-09 11:38:56 +02:00
|
|
|
return 1;
|
2008-09-17 17:28:38 +02:00
|
|
|
}
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
return 0;
|
2008-09-17 17:28:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Load an image from filename.
|
|
|
|
* \param filename The image file to load.
|
2009-04-09 11:38:56 +02:00
|
|
|
* \return 1 if image is loaded and on stack, 0 otherwise.
|
2008-09-17 17:28:38 +02:00
|
|
|
*/
|
2009-04-09 11:38:56 +02:00
|
|
|
static int
|
2008-09-17 17:28:38 +02:00
|
|
|
image_new_from_file(const char *filename)
|
|
|
|
{
|
|
|
|
Imlib_Image imimage;
|
|
|
|
Imlib_Load_Error e = IMLIB_LOAD_ERROR_NONE;
|
|
|
|
image_t *image;
|
|
|
|
|
|
|
|
if(!filename)
|
2009-04-09 11:38:56 +02:00
|
|
|
return 0;
|
2008-09-17 17:28:38 +02:00
|
|
|
|
|
|
|
if(!(imimage = imlib_load_image_with_error_return(filename, &e)))
|
|
|
|
{
|
|
|
|
warn("cannot load image %s: %s", filename, image_imlib_load_strerror(e));
|
2009-04-09 11:38:56 +02:00
|
|
|
return 0;
|
2008-09-17 17:28:38 +02:00
|
|
|
}
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
image = image_new(globalconf.L);
|
2008-09-17 17:28:38 +02:00
|
|
|
image->image = imimage;
|
2008-09-17 16:38:38 +02:00
|
|
|
|
2008-09-17 17:28:38 +02:00
|
|
|
image_compute(image);
|
2008-09-17 16:38:38 +02:00
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
return 1;
|
2008-09-17 16:38:38 +02:00
|
|
|
}
|
|
|
|
|
2008-09-11 14:39:47 +02:00
|
|
|
/** Create a new image object.
|
|
|
|
* \param L The Lua stack.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
2008-11-05 13:38:11 +01:00
|
|
|
* \lparam The image path, or nil to create an empty image.
|
|
|
|
* \lparam The image width if nil was set as first arg.
|
|
|
|
* \lparam The image height if nil was set as first arg.
|
2008-09-11 14:39:47 +02:00
|
|
|
* \lreturn An image object.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_image_new(lua_State *L)
|
|
|
|
{
|
2008-11-05 13:38:11 +01:00
|
|
|
const char *filename;
|
2008-09-11 14:39:47 +02:00
|
|
|
|
2008-11-05 13:38:11 +01:00
|
|
|
if((filename = lua_tostring(L, 2)))
|
2009-04-09 11:38:56 +02:00
|
|
|
return image_new_from_file(filename);
|
2008-11-05 13:38:11 +01:00
|
|
|
else if(lua_isnil(L, 2))
|
|
|
|
{
|
|
|
|
int width = luaL_checknumber(L, 3);
|
|
|
|
int height = luaL_checknumber(L, 4);
|
2008-11-09 15:54:21 +01:00
|
|
|
|
|
|
|
if(width <= 0 || height <= 0)
|
|
|
|
luaL_error(L, "request image has invalid size");
|
|
|
|
|
2008-11-05 13:38:11 +01:00
|
|
|
Imlib_Image imimage = imlib_create_image(width, height);
|
2009-04-09 11:38:56 +02:00
|
|
|
image_t *image = image_new(L);
|
2008-11-05 13:38:11 +01:00
|
|
|
image->image = imimage;
|
|
|
|
image_compute(image);
|
2009-04-09 11:38:56 +02:00
|
|
|
return 1;
|
2008-11-05 13:38:11 +01:00
|
|
|
}
|
2008-09-11 14:39:47 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-22 20:57:27 +02:00
|
|
|
/** Create a new image object from ARGB32 data.
|
|
|
|
* \param L The Lua stack.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lparam The image width.
|
|
|
|
* \lparam The image height.
|
|
|
|
* \lparam The image data as a string in ARGB32 format.
|
|
|
|
* \lreturn An image object.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_image_argb32_new(lua_State *L)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
unsigned int width = luaL_checknumber(L, 1);
|
|
|
|
unsigned int height = luaL_checknumber(L, 2);
|
|
|
|
const char *data = luaL_checklstring(L, 3, &len);
|
|
|
|
|
|
|
|
if(width * height * 4 != len)
|
|
|
|
luaL_error(L, "string size does not match image size");
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
return image_new_from_argb32(width, height, (uint32_t *) data);
|
2008-10-22 20:57:27 +02:00
|
|
|
}
|
|
|
|
|
2008-12-16 16:45:24 +01:00
|
|
|
/** Performs 90 degree rotations on the current image. Passing 0 orientation
|
|
|
|
* does not rotate, 1 rotates clockwise by 90 degree, 2, rotates clockwise by
|
|
|
|
* 180 degrees, 3 rotates clockwise by 270 degrees.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue An image.
|
|
|
|
* \lparam The rotation to perform.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_image_orientate(lua_State *L)
|
|
|
|
{
|
2009-04-09 11:38:56 +02:00
|
|
|
image_t *image = luaL_checkudata(L, 1, "image");
|
2008-12-16 16:45:24 +01:00
|
|
|
int orientation = luaL_checknumber(L, 2);
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
imlib_context_set_image(image->image);
|
2008-12-16 16:45:24 +01:00
|
|
|
imlib_image_orientate(orientation);
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
image_compute(image);
|
2008-12-16 16:45:24 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-09-17 17:47:28 +02:00
|
|
|
/** Rotate an image with specified angle radians and return a new image.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue An image.
|
|
|
|
* \lparam The angle in radians.
|
|
|
|
* \lreturn A rotated image.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_image_rotate(lua_State *L)
|
|
|
|
{
|
2009-04-09 11:38:56 +02:00
|
|
|
image_t *image = luaL_checkudata(L, 1, "image"), *new;
|
2008-09-17 17:47:28 +02:00
|
|
|
double angle = luaL_checknumber(L, 2);
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
new = image_new(L);
|
2008-09-17 17:47:28 +02:00
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
imlib_context_set_image(image->image);
|
2008-09-17 17:47:28 +02:00
|
|
|
new->image = imlib_create_rotated_image(angle);
|
|
|
|
|
|
|
|
image_compute(new);
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
return 1;
|
2008-09-17 17:47:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Crop an image to the given rectangle.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue An image.
|
|
|
|
* \lparam The top left x coordinate of the rectangle.
|
|
|
|
* \lparam The top left y coordinate of the rectangle.
|
|
|
|
* \lparam The width of the rectangle.
|
|
|
|
* \lparam The height of the rectangle.
|
|
|
|
* \lreturn A cropped image.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_image_crop(lua_State *L)
|
|
|
|
{
|
2009-04-09 11:38:56 +02:00
|
|
|
image_t *image = luaL_checkudata(L, 1, "image"), *new;
|
2008-09-17 17:47:28 +02:00
|
|
|
int x = luaL_checkint(L, 2);
|
|
|
|
int y = luaL_checkint(L, 3);
|
|
|
|
int w = luaL_checkint(L, 4);
|
|
|
|
int h = luaL_checkint(L, 5);
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
new = image_new(L);
|
2008-09-17 17:47:28 +02:00
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
imlib_context_set_image(image->image);
|
2008-09-17 17:47:28 +02:00
|
|
|
new->image = imlib_create_cropped_image(x, y, w, h);
|
|
|
|
|
|
|
|
image_compute(new);
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
return 1;
|
2008-09-17 17:47:28 +02:00
|
|
|
}
|
|
|
|
|
2008-10-14 17:37:39 +02:00
|
|
|
/** Crop the image to the given rectangle and scales it.
|
2008-10-21 18:29:02 +02:00
|
|
|
* \param L The Lua VM state.
|
2008-10-14 17:37:39 +02:00
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue An image.
|
|
|
|
* \lparam The top left x coordinate of the source rectangle.
|
|
|
|
* \lparam The top left y coordinate of the source rectangle.
|
|
|
|
* \lparam The width of the source rectangle.
|
|
|
|
* \lparam The height of the source rectangle.
|
|
|
|
* \lparam The width of the destination rectangle.
|
|
|
|
* \lparam The height of the destination rectangle.
|
|
|
|
* \lreturn A cropped image.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_image_crop_and_scale(lua_State *L)
|
|
|
|
{
|
2009-04-09 11:38:56 +02:00
|
|
|
image_t *image = luaL_checkudata(L, 1, "image"), *new;
|
2008-10-14 17:37:39 +02:00
|
|
|
int source_x = luaL_checkint(L, 2);
|
|
|
|
int source_y = luaL_checkint(L, 3);
|
|
|
|
int w = luaL_checkint(L, 4);
|
|
|
|
int h = luaL_checkint(L, 5);
|
|
|
|
int dest_w = luaL_checkint(L, 6);
|
|
|
|
int dest_h = luaL_checkint(L, 7);
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
new = image_new(L);
|
2008-10-14 17:37:39 +02:00
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
imlib_context_set_image(image->image);
|
2008-10-14 17:37:39 +02:00
|
|
|
new->image = imlib_create_cropped_scaled_image(source_x,
|
|
|
|
source_y,
|
|
|
|
w, h,
|
|
|
|
dest_w, dest_h);
|
|
|
|
|
|
|
|
image_compute(new);
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
return 1;
|
2008-10-14 17:37:39 +02:00
|
|
|
}
|
|
|
|
|
2008-12-29 15:19:01 +01:00
|
|
|
/** Saves the image to the given path. The file extension (e.g. .png or .jpg)
|
|
|
|
* will affect the output format.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue An image.
|
|
|
|
* \lparam The image path.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_image_save(lua_State *L)
|
|
|
|
{
|
2009-04-09 11:38:56 +02:00
|
|
|
image_t *image = luaL_checkudata(L, 1, "image");
|
2008-12-29 15:19:01 +01:00
|
|
|
const char *path = luaL_checkstring(L, 2);
|
|
|
|
Imlib_Load_Error err;
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
imlib_context_set_image(image->image);
|
2008-12-29 15:19:01 +01:00
|
|
|
imlib_save_image_with_error_return(path, &err);
|
|
|
|
|
|
|
|
if(err != IMLIB_LOAD_ERROR_NONE)
|
|
|
|
warn("cannot save image %s: %s", path, image_imlib_load_strerror(err));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-21 18:29:02 +02:00
|
|
|
/** Image object.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue An image
|
|
|
|
* \lfield width The image width.
|
|
|
|
* \lfield height The image height.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_image_index(lua_State *L)
|
|
|
|
{
|
|
|
|
if(luaA_usemetatable(L, 1, 2))
|
|
|
|
return 1;
|
|
|
|
|
2009-04-09 11:38:56 +02:00
|
|
|
image_t *image = luaL_checkudata(L, 1, "image");
|
2008-10-21 18:29:02 +02:00
|
|
|
size_t len;
|
|
|
|
const char *attr = luaL_checklstring(L, 2, &len);
|
|
|
|
|
|
|
|
switch(a_tokenize(attr, len))
|
|
|
|
{
|
|
|
|
case A_TK_WIDTH:
|
2009-04-09 11:38:56 +02:00
|
|
|
imlib_context_set_image(image->image);
|
2008-10-21 18:29:02 +02:00
|
|
|
lua_pushnumber(L, imlib_image_get_width());
|
|
|
|
break;
|
|
|
|
case A_TK_HEIGHT:
|
2009-04-09 11:38:56 +02:00
|
|
|
imlib_context_set_image(image->image);
|
2008-10-21 18:29:02 +02:00
|
|
|
lua_pushnumber(L, imlib_image_get_height());
|
|
|
|
break;
|
2008-12-18 15:18:47 +01:00
|
|
|
case A_TK_ALPHA:
|
2009-04-09 11:38:56 +02:00
|
|
|
imlib_context_set_image(image->image);
|
2008-12-18 15:18:47 +01:00
|
|
|
lua_pushboolean(L, imlib_image_has_alpha());
|
|
|
|
break;
|
2008-10-21 18:29:02 +02:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-09-11 14:39:47 +02:00
|
|
|
const struct luaL_reg awesome_image_methods[] =
|
|
|
|
{
|
|
|
|
{ "__call", luaA_image_new },
|
2008-10-22 20:57:27 +02:00
|
|
|
{ "argb32", luaA_image_argb32_new },
|
2008-09-11 14:39:47 +02:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
const struct luaL_reg awesome_image_meta[] =
|
|
|
|
{
|
2008-10-21 18:29:02 +02:00
|
|
|
{ "__index", luaA_image_index },
|
2008-09-17 17:47:28 +02:00
|
|
|
{ "rotate", luaA_image_rotate },
|
2008-12-16 16:45:24 +01:00
|
|
|
{ "orientate", luaA_image_orientate },
|
2008-09-17 17:47:28 +02:00
|
|
|
{ "crop", luaA_image_crop },
|
2008-10-14 17:37:39 +02:00
|
|
|
{ "crop_and_scale", luaA_image_crop_and_scale },
|
2008-12-29 15:19:01 +01:00
|
|
|
{ "save", luaA_image_save },
|
2008-09-11 14:39:47 +02:00
|
|
|
{ "__gc", luaA_image_gc },
|
|
|
|
{ "__tostring", luaA_image_tostring },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|