Last edit
Summary: question: lossless scale
Changed:
< : ''Is there a way to make eimp always use the original image for resizing, so the quality does not decrease with multiple scale operations? - [[ArneBab]]
to
> : ''Question'': Is there a way to make eimp always use the original image for resizing, so the quality does not decrease with multiple scale operations? - [[ArneBab]]
This package allows interactive image manipulation from within Emacs. See the code Lisp:eimp.el.
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)