Kristian Høgsberg | ffd710e | 2008-12-02 15:15:01 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2008 Kristian Høgsberg |
| 3 | * |
| 4 | * Permission to use, copy, modify, distribute, and sell this software and its |
| 5 | * documentation for any purpose is hereby granted without fee, provided that |
| 6 | * the above copyright notice appear in all copies and that both that copyright |
| 7 | * notice and this permission notice appear in supporting documentation, and |
| 8 | * that the name of the copyright holders not be used in advertising or |
| 9 | * publicity pertaining to distribution of the software without specific, |
| 10 | * written prior permission. The copyright holders make no representations |
| 11 | * about the suitability of this software for any purpose. It is provided "as |
| 12 | * is" without express or implied warranty. |
| 13 | * |
| 14 | * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 15 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO |
| 16 | * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR |
| 17 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, |
| 18 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| 19 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE |
| 20 | * OF THIS SOFTWARE. |
| 21 | */ |
| 22 | |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 23 | #include <stdint.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <string.h> |
| 26 | #include <stdio.h> |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 27 | #include <math.h> |
| 28 | #include <cairo.h> |
| 29 | #include "cairo-util.h" |
| 30 | |
Kristian Høgsberg | 8733026 | 2008-11-17 22:23:55 -0500 | [diff] [blame] | 31 | #define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0]) |
| 32 | |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 33 | void |
Kristian Høgsberg | 10bdd29 | 2008-11-08 23:27:27 -0500 | [diff] [blame] | 34 | blur_surface(cairo_surface_t *surface, int margin) |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 35 | { |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 36 | int32_t width, height, stride, x, y, z, w; |
| 37 | uint8_t *src, *dst; |
| 38 | uint32_t *s, *d, a, p; |
Kristian Høgsberg | 8733026 | 2008-11-17 22:23:55 -0500 | [diff] [blame] | 39 | int i, j, k, size, half; |
Kristian Høgsberg | 49e868c | 2010-06-15 16:18:58 -0400 | [diff] [blame^] | 40 | uint32_t kernel[49]; |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 41 | double f; |
| 42 | |
Kristian Høgsberg | 8733026 | 2008-11-17 22:23:55 -0500 | [diff] [blame] | 43 | size = ARRAY_LENGTH(kernel); |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 44 | width = cairo_image_surface_get_width(surface); |
| 45 | height = cairo_image_surface_get_height(surface); |
| 46 | stride = cairo_image_surface_get_stride(surface); |
| 47 | src = cairo_image_surface_get_data(surface); |
| 48 | |
Kristian Høgsberg | 5fc96ff | 2009-09-12 15:58:48 -0400 | [diff] [blame] | 49 | dst = malloc(height * stride); |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 50 | |
| 51 | half = size / 2; |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 52 | for (i = 0; i < size; i++) { |
| 53 | f = (i - half); |
Kristian Høgsberg | 49e868c | 2010-06-15 16:18:58 -0400 | [diff] [blame^] | 54 | kernel[i] = exp(- f * f / ARRAY_LENGTH(kernel)) * 10000; |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | for (i = 0; i < height; i++) { |
| 58 | s = (uint32_t *) (src + i * stride); |
| 59 | d = (uint32_t *) (dst + i * stride); |
| 60 | for (j = 0; j < width; j++) { |
Kristian Høgsberg | 8733026 | 2008-11-17 22:23:55 -0500 | [diff] [blame] | 61 | if (margin < j && j < width - margin) { |
| 62 | d[j] = s[j]; |
Kristian Høgsberg | 10bdd29 | 2008-11-08 23:27:27 -0500 | [diff] [blame] | 63 | continue; |
Kristian Høgsberg | 8733026 | 2008-11-17 22:23:55 -0500 | [diff] [blame] | 64 | } |
| 65 | |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 66 | x = 0; |
| 67 | y = 0; |
| 68 | z = 0; |
| 69 | w = 0; |
Kristian Høgsberg | 49e868c | 2010-06-15 16:18:58 -0400 | [diff] [blame^] | 70 | a = 0; |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 71 | for (k = 0; k < size; k++) { |
| 72 | if (j - half + k < 0 || j - half + k >= width) |
| 73 | continue; |
| 74 | p = s[j - half + k]; |
| 75 | |
| 76 | x += (p >> 24) * kernel[k]; |
| 77 | y += ((p >> 16) & 0xff) * kernel[k]; |
| 78 | z += ((p >> 8) & 0xff) * kernel[k]; |
| 79 | w += (p & 0xff) * kernel[k]; |
Kristian Høgsberg | 49e868c | 2010-06-15 16:18:58 -0400 | [diff] [blame^] | 80 | a += kernel[k]; |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 81 | } |
| 82 | d[j] = (x / a << 24) | (y / a << 16) | (z / a << 8) | w / a; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | for (i = 0; i < height; i++) { |
| 87 | s = (uint32_t *) (dst + i * stride); |
| 88 | d = (uint32_t *) (src + i * stride); |
| 89 | for (j = 0; j < width; j++) { |
Kristian Høgsberg | 8733026 | 2008-11-17 22:23:55 -0500 | [diff] [blame] | 90 | if (margin <= i && i < height - margin) { |
| 91 | d[j] = s[j]; |
Kristian Høgsberg | 10bdd29 | 2008-11-08 23:27:27 -0500 | [diff] [blame] | 92 | continue; |
Kristian Høgsberg | 8733026 | 2008-11-17 22:23:55 -0500 | [diff] [blame] | 93 | } |
| 94 | |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 95 | x = 0; |
| 96 | y = 0; |
| 97 | z = 0; |
| 98 | w = 0; |
Kristian Høgsberg | 49e868c | 2010-06-15 16:18:58 -0400 | [diff] [blame^] | 99 | a = 0; |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 100 | for (k = 0; k < size; k++) { |
| 101 | if (i - half + k < 0 || i - half + k >= height) |
| 102 | continue; |
| 103 | s = (uint32_t *) (dst + (i - half + k) * stride); |
| 104 | p = s[j]; |
| 105 | |
| 106 | x += (p >> 24) * kernel[k]; |
| 107 | y += ((p >> 16) & 0xff) * kernel[k]; |
| 108 | z += ((p >> 8) & 0xff) * kernel[k]; |
| 109 | w += (p & 0xff) * kernel[k]; |
Kristian Høgsberg | 49e868c | 2010-06-15 16:18:58 -0400 | [diff] [blame^] | 110 | a += kernel[k]; |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 111 | } |
| 112 | d[j] = (x / a << 24) | (y / a << 16) | (z / a << 8) | w / a; |
| 113 | } |
| 114 | } |
| 115 | |
Kristian Høgsberg | 5fc96ff | 2009-09-12 15:58:48 -0400 | [diff] [blame] | 116 | free(dst); |
Kristian Høgsberg | 2f2cfae | 2008-11-08 22:46:30 -0500 | [diff] [blame] | 117 | } |