diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-01-03 15:59:11 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-01-03 15:59:11 +0100 |
commit | 7e5982a2788bd79a45ad6f02db46f061f97b6e14 (patch) | |
tree | 12a028f52cacbe6578db8174378e92efe7d4be1e | |
parent | 78c5ee268d7e40611492a5c04539f8e81e1d0133 (diff) |
blur: Add comment.
-rw-r--r-- | pict.scm | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -454,6 +454,9 @@ strings that are built from the list of attributes LST." ;;; XXX: Emacs doesn't render filters when the image type is SVG. It ;;; only does this when the image type is 'imagemagick, i.e. when the ;;; SVG is first fed to ImageMagick and the raster image is displayed. + +;;; We have no control over whether the image is rendered with +;;; ImageMagick or with librsvg. (define (blur pict radius) "Apply a Gaussian blur with blur RADIUS to the PICT." (let ((new-height (+ (pict-height pict) (* 2 radius))) |