You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
295 lines
7.4 KiB
295 lines
7.4 KiB
/*
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
/**
|
|
* \file
|
|
* GTK bitmap handling.
|
|
*
|
|
* This implements the bitmap interface using cairo image surfaces
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <cairo.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "utils/utils.h"
|
|
#include "utils/errors.h"
|
|
#include "netsurf/content.h"
|
|
#include "netsurf/bitmap.h"
|
|
#include "netsurf/plotters.h"
|
|
|
|
#include "gtk/scaffolding.h"
|
|
#include "gtk/plotters.h"
|
|
#include "gtk/bitmap.h"
|
|
|
|
|
|
/**
|
|
* Create a bitmap.
|
|
*
|
|
* \param width width of image in pixels
|
|
* \param height height of image in pixels
|
|
* \param flags flags for bitmap creation
|
|
* \return an opaque struct bitmap, or NULL on memory exhaustion
|
|
*/
|
|
static void *bitmap_create(int width, int height, enum gui_bitmap_flags flags)
|
|
{
|
|
struct bitmap *gbitmap;
|
|
|
|
if (width == 0 || height == 0) {
|
|
return NULL;
|
|
}
|
|
|
|
gbitmap = calloc(1, sizeof(struct bitmap));
|
|
if (gbitmap != NULL) {
|
|
if (flags & BITMAP_OPAQUE) {
|
|
gbitmap->opaque = true;
|
|
}
|
|
|
|
gbitmap->surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height);
|
|
if (cairo_surface_status(gbitmap->surface) != CAIRO_STATUS_SUCCESS) {
|
|
cairo_surface_destroy(gbitmap->surface);
|
|
free(gbitmap);
|
|
gbitmap = NULL;
|
|
}
|
|
}
|
|
|
|
return gbitmap;
|
|
}
|
|
|
|
|
|
/**
|
|
* Sets whether a bitmap should be plotted opaque
|
|
*
|
|
* \param vbitmap a bitmap, as returned by bitmap_create()
|
|
* \param opaque whether the bitmap should be plotted opaque
|
|
*/
|
|
static void bitmap_set_opaque(void *vbitmap, bool opaque)
|
|
{
|
|
struct bitmap *gbitmap = (struct bitmap *)vbitmap;
|
|
|
|
gbitmap->opaque = opaque;
|
|
}
|
|
|
|
|
|
/**
|
|
* Gets whether a bitmap should be plotted opaque
|
|
*
|
|
* \param vbitmap a bitmap, as returned by bitmap_create()
|
|
*/
|
|
static bool bitmap_get_opaque(void *vbitmap)
|
|
{
|
|
struct bitmap *gbitmap = (struct bitmap *)vbitmap;
|
|
|
|
return gbitmap->opaque;
|
|
}
|
|
|
|
|
|
/**
|
|
* Return a pointer to the pixel data in a bitmap.
|
|
*
|
|
* \param vbitmap a bitmap, as returned by bitmap_create()
|
|
* \return pointer to the pixel buffer
|
|
*
|
|
* The pixel data is packed as BITMAP_FORMAT, possibly with padding at the end
|
|
* of rows. The width of a row in bytes is given by bitmap_get_rowstride().
|
|
*/
|
|
static unsigned char *bitmap_get_buffer(void *vbitmap)
|
|
{
|
|
struct bitmap *gbitmap = (struct bitmap *)vbitmap;
|
|
uint8_t *pixels;
|
|
|
|
assert(gbitmap);
|
|
|
|
cairo_surface_flush(gbitmap->surface);
|
|
pixels = cairo_image_surface_get_data(gbitmap->surface);
|
|
|
|
return (unsigned char *) pixels;
|
|
}
|
|
|
|
|
|
/**
|
|
* Find the width of a pixel row in bytes.
|
|
*
|
|
* \param vbitmap a bitmap, as returned by bitmap_create()
|
|
* \return width of a pixel row in the bitmap
|
|
*/
|
|
static size_t bitmap_get_rowstride(void *vbitmap)
|
|
{
|
|
struct bitmap *gbitmap = (struct bitmap *)vbitmap;
|
|
assert(gbitmap);
|
|
|
|
return cairo_image_surface_get_stride(gbitmap->surface);
|
|
}
|
|
|
|
|
|
/**
|
|
* Free a bitmap.
|
|
*
|
|
* \param vbitmap a bitmap, as returned by bitmap_create()
|
|
*/
|
|
static void bitmap_destroy(void *vbitmap)
|
|
{
|
|
struct bitmap *gbitmap = (struct bitmap *)vbitmap;
|
|
assert(gbitmap);
|
|
|
|
if (gbitmap->surface != NULL) {
|
|
cairo_surface_destroy(gbitmap->surface);
|
|
}
|
|
if (gbitmap->scsurface != NULL) {
|
|
cairo_surface_destroy(gbitmap->scsurface);
|
|
}
|
|
free(gbitmap);
|
|
}
|
|
|
|
|
|
/**
|
|
* The bitmap image has changed, so flush any persistant cache.
|
|
*
|
|
* \param vbitmap a bitmap, as returned by bitmap_create()
|
|
*/
|
|
static void bitmap_modified(void *vbitmap)
|
|
{
|
|
struct bitmap *gbitmap = (struct bitmap *)vbitmap;
|
|
|
|
assert(gbitmap);
|
|
|
|
cairo_surface_mark_dirty(gbitmap->surface);
|
|
}
|
|
|
|
/* exported interface documented in gtk/bitmap.h */
|
|
int nsgtk_bitmap_get_width(void *vbitmap)
|
|
{
|
|
struct bitmap *gbitmap = (struct bitmap *)vbitmap;
|
|
assert(gbitmap);
|
|
|
|
return cairo_image_surface_get_width(gbitmap->surface);
|
|
}
|
|
|
|
/* exported interface documented in gtk/bitmap.h */
|
|
int nsgtk_bitmap_get_height(void *vbitmap)
|
|
{
|
|
struct bitmap *gbitmap = (struct bitmap *)vbitmap;
|
|
assert(gbitmap);
|
|
|
|
return cairo_image_surface_get_height(gbitmap->surface);
|
|
}
|
|
|
|
/**
|
|
* Render content into a bitmap.
|
|
*
|
|
* \param bitmap The bitmap to draw to
|
|
* \param content The content to render
|
|
* \return true on success and bitmap updated else false
|
|
*/
|
|
static nserror
|
|
bitmap_render(struct bitmap *bitmap, struct hlcache_handle *content)
|
|
{
|
|
cairo_surface_t *dsurface = bitmap->surface;
|
|
cairo_surface_t *surface;
|
|
cairo_t *old_cr;
|
|
gint dwidth, dheight;
|
|
int cwidth, cheight;
|
|
struct redraw_context ctx = {
|
|
.interactive = false,
|
|
.background_images = true,
|
|
.plot = &nsgtk_plotters
|
|
};
|
|
|
|
assert(content);
|
|
assert(bitmap);
|
|
|
|
dwidth = cairo_image_surface_get_width(dsurface);
|
|
dheight = cairo_image_surface_get_height(dsurface);
|
|
|
|
/* Calculate size of buffer to render the content into */
|
|
/* Get the width from the content width, unless it exceeds 1024,
|
|
* in which case we use 1024. This means we never create excessively
|
|
* large render buffers for huge contents, which would eat memory and
|
|
* cripple performance.
|
|
*/
|
|
cwidth = min(max(content_get_width(content), dwidth), 1024);
|
|
|
|
/* The height is set in proportion with the width, according to the
|
|
* aspect ratio of the required thumbnail. */
|
|
cheight = ((cwidth * dheight) + (dwidth / 2)) / dwidth;
|
|
|
|
/* At this point, we MUST have decided to render something non-zero sized */
|
|
assert(cwidth > 0);
|
|
assert(cheight > 0);
|
|
|
|
/* Create surface to render into */
|
|
surface = cairo_surface_create_similar(dsurface, CAIRO_CONTENT_COLOR_ALPHA, cwidth, cheight);
|
|
|
|
if (cairo_surface_status(surface) != CAIRO_STATUS_SUCCESS) {
|
|
cairo_surface_destroy(surface);
|
|
return false;
|
|
}
|
|
|
|
old_cr = current_cr;
|
|
current_cr = cairo_create(surface);
|
|
|
|
/* render the content */
|
|
content_scaled_redraw(content, cwidth, cheight, &ctx);
|
|
|
|
cairo_destroy(current_cr);
|
|
current_cr = old_cr;
|
|
|
|
cairo_t *cr = cairo_create(dsurface);
|
|
|
|
/* Scale *before* setting the source surface (1) */
|
|
cairo_scale (cr, (double)dwidth / cwidth, (double)dheight / cheight);
|
|
cairo_set_source_surface (cr, surface, 0, 0);
|
|
|
|
/* To avoid getting the edge pixels blended with 0 alpha,
|
|
* which would occur with the default EXTEND_NONE. Use
|
|
* EXTEND_PAD for 1.2 or newer (2)
|
|
*/
|
|
cairo_pattern_set_extend(cairo_get_source(cr), CAIRO_EXTEND_REFLECT);
|
|
|
|
/* Replace the destination with the source instead of overlaying */
|
|
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
|
|
|
|
/* Do the actual drawing */
|
|
cairo_paint(cr);
|
|
|
|
cairo_destroy(cr);
|
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
return NSERROR_OK;
|
|
}
|
|
|
|
|
|
static struct gui_bitmap_table bitmap_table = {
|
|
.create = bitmap_create,
|
|
.destroy = bitmap_destroy,
|
|
.set_opaque = bitmap_set_opaque,
|
|
.get_opaque = bitmap_get_opaque,
|
|
.get_buffer = bitmap_get_buffer,
|
|
.get_rowstride = bitmap_get_rowstride,
|
|
.get_width = nsgtk_bitmap_get_width,
|
|
.get_height = nsgtk_bitmap_get_height,
|
|
.modified = bitmap_modified,
|
|
.render = bitmap_render,
|
|
};
|
|
|
|
struct gui_bitmap_table *nsgtk_bitmap_table = &bitmap_table;
|