aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnus/gnus-html.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/gnus/gnus-html.el')
-rw-r--r--lisp/gnus/gnus-html.el32
1 files changed, 31 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-html.el b/lisp/gnus/gnus-html.el
index 2e44c3f560..a89a3f57ff 100644
--- a/lisp/gnus/gnus-html.el
+++ b/lisp/gnus/gnus-html.el
@@ -56,6 +56,16 @@
:group 'gnus-art
:type 'regexp)
+(defcustom gnus-max-image-proportion 0.7
+ "How big pictures displayed are in relation to the window they're in.
+A value of 0.7 means that they are allowed to take up 70% of the
+width and height of the window. If they are larger than this,
+and Emacs supports it, then the images will be rescaled down to
+fit these criteria."
+ :version "24.1"
+ :group 'gnus-art
+ :type 'float)
+
;;;###autoload
(defun gnus-article-html (handle)
(let ((article-buffer (current-buffer)))
@@ -219,13 +229,33 @@
(= (car (image-size image t)) 30)
(= (cdr (image-size image t)) 30))))
(progn
- (gnus-put-image image)
+ (gnus-put-image (gnus-html-rescale-image image))
t)
(when (fboundp 'find-image)
(gnus-put-image (find-image
'((:type xpm :file "lock-broken.xpm")))))
nil)))))
+(defun gnus-html-rescale-image (image)
+ (if (not (fboundp 'imagemagick-types))
+ image
+ (let* ((width (car (image-size image t)))
+ (height (cdr (image-size image t)))
+ (edges (window-pixel-edges))
+ (window-width (truncate (* gnus-max-image-proportion
+ (- (nth 2 edges) (nth 0 edges)))))
+ (window-height (truncate (* gnus-max-image-proportion
+ (- (nth 3 edges) (nth 1 edges)))))
+ scaled-image)
+ (when (> width window-width)
+ (setq window-height (truncate (* window-height
+ (/ (* 1.0 window-width) width)))))
+ (if (> height window-height)
+ (or (create-image file 'imagemagick nil
+ :height window-height)
+ image)
+ image))))
+
(defun gnus-html-prune-cache ()
(let ((total-size 0)
files)