mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-25 15:59:36 +03:00
f559054c1a
Allow images to be unloaded to disk or compressed in memory. Provide thumbnails in all tree windows (hotlist, history). Optimise the application initialisation times. Part 2 of 2. svn path=/import/netsurf/; revision=1762
19 lines
572 B
C
19 lines
572 B
C
/*
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
* Licensed under the GNU General Public License,
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
|
* Copyright 2005 Richard Wilson <info@tinct.net>
|
|
*/
|
|
|
|
/** \file
|
|
* Page thumbnail creation (interface).
|
|
*/
|
|
|
|
#include "oslib/osspriteop.h"
|
|
#include "netsurf/image/bitmap.h"
|
|
|
|
bool thumbnail_create(struct content *content, struct bitmap *bitmap,
|
|
const char *url);
|
|
osspriteop_area *thumbnail_convert_8bpp(struct bitmap *bitmap);
|