Function: thumbs-emboss-image

thumbs-emboss-image is an interactive and byte-compiled function defined in thumbs.el.gz.

Signature

(thumbs-emboss-image EMBOSS)

Documentation

Emboss the image with value EMBOSS.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/thumbs.el.gz
(defun thumbs-emboss-image (emboss)
  "Emboss the image with value EMBOSS."
  (interactive "nEmboss value: ")
  (if (or (< emboss 3) (> emboss 31) (zerop (% emboss 2)))
      (error "Arg must be an odd number between 3 and 31"))
  (thumbs-modify-image "emboss" (number-to-string emboss)))