Eimp

From WikEmacs
Revision as of 06:29, 6 November 2012 by Xfq (talk | contribs) (Created page with "eimp.el --- Emacs Image Manipulation Package Author: Matthew P. Hodges This package allows interactive image manipulation from within Emacs. It uses the mogrify utility fro...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

eimp.el --- Emacs Image Manipulation Package

Author: Matthew P. Hodges

This package allows interactive image manipulation from within Emacs. It uses the mogrify utility from ImageMagick to do the actual transformations.

Switch the minor mode on programmatically with:

    (eimp-mode 1)

or toggle interactively with M-x eimp-mode RET.

Switch the minor mode on for all image-mode buffers with:

    (autoload 'eimp-mode "eimp" "Emacs Image Manipulation Package." t)
    (add-hook 'image-mode-hook 'eimp-mode)