2008-12-02 23:15:01 +03:00
|
|
|
/*
|
|
|
|
* Copyright © 2008 Kristian Høgsberg
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
|
|
* that the name of the copyright holders not be used in advertising or
|
|
|
|
* publicity pertaining to distribution of the software without specific,
|
|
|
|
* written prior permission. The copyright holders make no representations
|
|
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
* OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2008-11-09 06:46:30 +03:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
#include "cairo-util.h"
|
|
|
|
|
2008-11-18 06:23:55 +03:00
|
|
|
#define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])
|
|
|
|
|
2008-11-09 06:46:30 +03:00
|
|
|
void
|
2008-11-09 07:27:27 +03:00
|
|
|
blur_surface(cairo_surface_t *surface, int margin)
|
2008-11-09 06:46:30 +03:00
|
|
|
{
|
|
|
|
int32_t width, height, stride, x, y, z, w;
|
|
|
|
uint8_t *src, *dst;
|
|
|
|
uint32_t *s, *d, a, p;
|
2008-11-18 06:23:55 +03:00
|
|
|
int i, j, k, size, half;
|
2010-06-16 00:18:58 +04:00
|
|
|
uint32_t kernel[49];
|
2008-11-09 06:46:30 +03:00
|
|
|
double f;
|
|
|
|
|
2008-11-18 06:23:55 +03:00
|
|
|
size = ARRAY_LENGTH(kernel);
|
2008-11-09 06:46:30 +03:00
|
|
|
width = cairo_image_surface_get_width(surface);
|
|
|
|
height = cairo_image_surface_get_height(surface);
|
|
|
|
stride = cairo_image_surface_get_stride(surface);
|
|
|
|
src = cairo_image_surface_get_data(surface);
|
|
|
|
|
2009-09-12 23:58:48 +04:00
|
|
|
dst = malloc(height * stride);
|
2008-11-09 06:46:30 +03:00
|
|
|
|
|
|
|
half = size / 2;
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
f = (i - half);
|
2010-06-16 00:18:58 +04:00
|
|
|
kernel[i] = exp(- f * f / ARRAY_LENGTH(kernel)) * 10000;
|
2008-11-09 06:46:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++) {
|
|
|
|
s = (uint32_t *) (src + i * stride);
|
|
|
|
d = (uint32_t *) (dst + i * stride);
|
|
|
|
for (j = 0; j < width; j++) {
|
2008-11-18 06:23:55 +03:00
|
|
|
if (margin < j && j < width - margin) {
|
|
|
|
d[j] = s[j];
|
2008-11-09 07:27:27 +03:00
|
|
|
continue;
|
2008-11-18 06:23:55 +03:00
|
|
|
}
|
|
|
|
|
2008-11-09 06:46:30 +03:00
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
z = 0;
|
|
|
|
w = 0;
|
2010-06-16 00:18:58 +04:00
|
|
|
a = 0;
|
2008-11-09 06:46:30 +03:00
|
|
|
for (k = 0; k < size; k++) {
|
|
|
|
if (j - half + k < 0 || j - half + k >= width)
|
|
|
|
continue;
|
|
|
|
p = s[j - half + k];
|
|
|
|
|
|
|
|
x += (p >> 24) * kernel[k];
|
|
|
|
y += ((p >> 16) & 0xff) * kernel[k];
|
|
|
|
z += ((p >> 8) & 0xff) * kernel[k];
|
|
|
|
w += (p & 0xff) * kernel[k];
|
2010-06-16 00:18:58 +04:00
|
|
|
a += kernel[k];
|
2008-11-09 06:46:30 +03:00
|
|
|
}
|
|
|
|
d[j] = (x / a << 24) | (y / a << 16) | (z / a << 8) | w / a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++) {
|
|
|
|
s = (uint32_t *) (dst + i * stride);
|
|
|
|
d = (uint32_t *) (src + i * stride);
|
|
|
|
for (j = 0; j < width; j++) {
|
2008-11-18 06:23:55 +03:00
|
|
|
if (margin <= i && i < height - margin) {
|
|
|
|
d[j] = s[j];
|
2008-11-09 07:27:27 +03:00
|
|
|
continue;
|
2008-11-18 06:23:55 +03:00
|
|
|
}
|
|
|
|
|
2008-11-09 06:46:30 +03:00
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
z = 0;
|
|
|
|
w = 0;
|
2010-06-16 00:18:58 +04:00
|
|
|
a = 0;
|
2008-11-09 06:46:30 +03:00
|
|
|
for (k = 0; k < size; k++) {
|
|
|
|
if (i - half + k < 0 || i - half + k >= height)
|
|
|
|
continue;
|
|
|
|
s = (uint32_t *) (dst + (i - half + k) * stride);
|
|
|
|
p = s[j];
|
|
|
|
|
|
|
|
x += (p >> 24) * kernel[k];
|
|
|
|
y += ((p >> 16) & 0xff) * kernel[k];
|
|
|
|
z += ((p >> 8) & 0xff) * kernel[k];
|
|
|
|
w += (p & 0xff) * kernel[k];
|
2010-06-16 00:18:58 +04:00
|
|
|
a += kernel[k];
|
2008-11-09 06:46:30 +03:00
|
|
|
}
|
|
|
|
d[j] = (x / a << 24) | (y / a << 16) | (z / a << 8) | w / a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-12 23:58:48 +04:00
|
|
|
free(dst);
|
2010-06-16 01:16:35 +04:00
|
|
|
cairo_surface_mark_dirty(surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tile_mask(cairo_t *cr, cairo_surface_t *surface,
|
2010-08-18 23:28:04 +04:00
|
|
|
int x, int y, int width, int height, int margin, int top_margin)
|
2010-06-16 01:16:35 +04:00
|
|
|
{
|
|
|
|
cairo_pattern_t *pattern;
|
|
|
|
cairo_matrix_t matrix;
|
2010-08-18 23:28:04 +04:00
|
|
|
int i, fx, fy, vmargin;
|
2010-06-16 01:16:35 +04:00
|
|
|
|
|
|
|
cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
|
|
|
|
pattern = cairo_pattern_create_for_surface (surface);
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
fx = i & 1;
|
|
|
|
fy = i >> 1;
|
|
|
|
|
|
|
|
cairo_matrix_init_translate(&matrix,
|
|
|
|
-x + fx * (128 - width),
|
|
|
|
-y + fy * (128 - height));
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
|
|
|
|
2010-08-18 23:28:04 +04:00
|
|
|
if (fy)
|
|
|
|
vmargin = margin;
|
|
|
|
else
|
|
|
|
vmargin = top_margin;
|
|
|
|
|
2010-06-16 01:16:35 +04:00
|
|
|
cairo_reset_clip(cr);
|
|
|
|
cairo_rectangle(cr,
|
|
|
|
x + fx * (width - margin),
|
2010-08-18 23:28:04 +04:00
|
|
|
y + fy * (height - vmargin),
|
|
|
|
margin, vmargin);
|
2010-06-16 01:16:35 +04:00
|
|
|
cairo_clip (cr);
|
|
|
|
cairo_mask(cr, pattern);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Top strecth */
|
|
|
|
cairo_matrix_init_translate(&matrix, 64, 0);
|
|
|
|
cairo_matrix_scale(&matrix, 64.0 / (width - 2 * margin), 1);
|
|
|
|
cairo_matrix_translate(&matrix, -x - width / 2, -y);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
|
|
|
cairo_rectangle(cr, x + margin, y, width - 2 * margin, margin);
|
|
|
|
|
|
|
|
cairo_reset_clip(cr);
|
|
|
|
cairo_rectangle(cr,
|
|
|
|
x + margin,
|
|
|
|
y,
|
|
|
|
width - 2 * margin, margin);
|
|
|
|
cairo_clip (cr);
|
|
|
|
cairo_mask(cr, pattern);
|
|
|
|
|
|
|
|
/* Bottom strecth */
|
|
|
|
cairo_matrix_translate(&matrix, 0, -height + 128);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
|
|
|
|
|
|
|
cairo_reset_clip(cr);
|
|
|
|
cairo_rectangle(cr, x + margin, y + height - margin,
|
|
|
|
width - 2 * margin, margin);
|
|
|
|
cairo_clip (cr);
|
|
|
|
cairo_mask(cr, pattern);
|
|
|
|
|
|
|
|
/* Left strecth */
|
|
|
|
cairo_matrix_init_translate(&matrix, 0, 64);
|
|
|
|
cairo_matrix_scale(&matrix, 1, 64.0 / (height - 2 * margin));
|
|
|
|
cairo_matrix_translate(&matrix, -x, -y - height / 2);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
|
|
|
cairo_reset_clip(cr);
|
|
|
|
cairo_rectangle(cr, x, y + margin, margin, height - 2 * margin);
|
|
|
|
cairo_clip (cr);
|
|
|
|
cairo_mask(cr, pattern);
|
|
|
|
|
|
|
|
/* Right strecth */
|
|
|
|
cairo_matrix_translate(&matrix, -width + 128, 0);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
|
|
|
cairo_rectangle(cr, x + width - margin, y + margin,
|
|
|
|
margin, height - 2 * margin);
|
|
|
|
cairo_reset_clip(cr);
|
|
|
|
cairo_clip (cr);
|
|
|
|
cairo_mask(cr, pattern);
|
|
|
|
|
|
|
|
cairo_pattern_destroy(pattern);
|
|
|
|
cairo_reset_clip(cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tile_source(cairo_t *cr, cairo_surface_t *surface,
|
2010-08-18 23:28:04 +04:00
|
|
|
int x, int y, int width, int height, int margin, int top_margin)
|
2010-06-16 01:16:35 +04:00
|
|
|
{
|
|
|
|
cairo_pattern_t *pattern;
|
|
|
|
cairo_matrix_t matrix;
|
2010-08-18 23:28:04 +04:00
|
|
|
int i, fx, fy, vmargin;
|
2010-06-16 01:16:35 +04:00
|
|
|
|
|
|
|
cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
|
|
|
|
pattern = cairo_pattern_create_for_surface (surface);
|
|
|
|
cairo_set_source(cr, pattern);
|
|
|
|
cairo_pattern_destroy(pattern);
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
fx = i & 1;
|
|
|
|
fy = i >> 1;
|
|
|
|
|
|
|
|
cairo_matrix_init_translate(&matrix,
|
|
|
|
-x + fx * (128 - width),
|
|
|
|
-y + fy * (128 - height));
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
|
|
|
|
2010-08-18 23:28:04 +04:00
|
|
|
if (fy)
|
|
|
|
vmargin = margin;
|
|
|
|
else
|
|
|
|
vmargin = top_margin;
|
|
|
|
|
2010-06-16 01:16:35 +04:00
|
|
|
cairo_rectangle(cr,
|
|
|
|
x + fx * (width - margin),
|
2010-08-18 23:28:04 +04:00
|
|
|
y + fy * (height - vmargin),
|
|
|
|
margin, vmargin);
|
2010-06-16 01:16:35 +04:00
|
|
|
cairo_fill(cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Top strecth */
|
|
|
|
cairo_matrix_init_translate(&matrix, 64, 0);
|
|
|
|
cairo_matrix_scale(&matrix, 64.0 / (width - 2 * margin), 1);
|
|
|
|
cairo_matrix_translate(&matrix, -x - width / 2, -y);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
2010-08-18 23:28:04 +04:00
|
|
|
cairo_rectangle(cr, x + margin, y, width - 2 * margin, top_margin);
|
2010-06-16 01:16:35 +04:00
|
|
|
cairo_fill(cr);
|
|
|
|
|
|
|
|
/* Bottom strecth */
|
|
|
|
cairo_matrix_translate(&matrix, 0, -height + 128);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
|
|
|
cairo_rectangle(cr, x + margin, y + height - margin,
|
|
|
|
width - 2 * margin, margin);
|
|
|
|
cairo_fill(cr);
|
|
|
|
|
|
|
|
/* Left strecth */
|
|
|
|
cairo_matrix_init_translate(&matrix, 0, 64);
|
2010-08-18 23:28:04 +04:00
|
|
|
cairo_matrix_scale(&matrix, 1, 64.0 / (height - margin - top_margin));
|
2010-06-16 01:16:35 +04:00
|
|
|
cairo_matrix_translate(&matrix, -x, -y - height / 2);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
2010-08-18 23:28:04 +04:00
|
|
|
cairo_rectangle(cr, x, y + top_margin,
|
|
|
|
margin, height - margin - top_margin);
|
2010-06-16 01:16:35 +04:00
|
|
|
cairo_fill(cr);
|
|
|
|
|
|
|
|
/* Right strecth */
|
|
|
|
cairo_matrix_translate(&matrix, -width + 128, 0);
|
|
|
|
cairo_pattern_set_matrix(pattern, &matrix);
|
2010-08-18 23:28:04 +04:00
|
|
|
cairo_rectangle(cr, x + width - margin, y + top_margin,
|
|
|
|
margin, height - margin - top_margin);
|
2010-06-16 01:16:35 +04:00
|
|
|
cairo_fill(cr);
|
2008-11-09 06:46:30 +03:00
|
|
|
}
|