/* * Imaging tools for cacaview and img2irc * Copyright (c) 2003-2006 Sam Hocevar * All Rights Reserved * * $Id: common-image.h 558 2006-04-14 07:30:53Z sam $ * * This program is free software; you can redistribute it and/or * modify it under the terms of the Do What The Fuck You Want To * Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ struct image { char *pixels; unsigned int w, h; struct cucul_dither *dither; void *priv; }; /* Local functions */ extern struct image * load_image(char const *); extern void unload_image(struct image *);