我搜索了很多关于在emacs中打开图像的内容。我认为ImageMagick会做到这一点,但我似乎无法找到的是在Emac中使用它的方法以及如何将它与Emacs集成?!除了任何更好的选择,我们将不胜感激。
答案 0 :(得分:5)
你在找Emacs Image Manipulation mode之类的东西吗?它使用来自ImageMacgick的mogrify。
答案 1 :(得分:5)
image-dired怎么样?
它已包含在emacs中。只需输入M-x image-dired
并选择合适的目录。
http://www.markus-gattol.name/ws/emacs_notes_cheat_sheets.html#sec8
答案 2 :(得分:3)
不确定你的意思;您可以在Emacs"内部打开图像。就像任何其他文件一样,只需C-x C-f
即可找到它,C-c C-c
可以切换位图渲染。
代码方面,它看起来像这样:
(defimage test-image
((:file "~/Pictures/greenbug.xpm")))
(insert-image test-image)
甚至更简单
(insert-image (create-image "~/Pictures/greenbug.xpm"))