2004-02-25 15:12:58 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2005-06-23 17:24:23 +00:00
|
|
|
* Copyright 2005 Richard Wilson <info@tinct.net>
|
2007-08-08 16:16:03 +00:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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, see <http://www.gnu.org/licenses/>.
|
2004-02-25 15:12:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Page thumbnail creation (interface).
|
|
|
|
*/
|
|
|
|
|
2008-07-26 22:29:15 +00:00
|
|
|
#include "oslib/osspriteop.h"
|
2007-05-30 22:39:54 +00:00
|
|
|
#include "image/bitmap.h"
|
2004-02-25 15:12:58 +00:00
|
|
|
|
2005-06-23 17:24:23 +00:00
|
|
|
osspriteop_area *thumbnail_convert_8bpp(struct bitmap *bitmap);
|