0
我們如何在emacs中插入圖像?我知道:在emacs文本緩衝區中插入圖像
(insert-image (create-image "image/path"))
並評估它與C-x C-e
。我想我必須打開iimage模式,但它不起作用。這種方法有什麼錯誤?什麼是插入圖像的其他方法?
我們如何在emacs中插入圖像?我知道:在emacs文本緩衝區中插入圖像
(insert-image (create-image "image/path"))
並評估它與C-x C-e
。我想我必須打開iimage模式,但它不起作用。這種方法有什麼錯誤?什麼是插入圖像的其他方法?
你需要使用的完整路徑的圖像:
(insert-image (create-image "~/imagedir/...image..."))
啊哈!一個愚蠢的錯誤。謝謝您的幫助。 – sudeepdino008
不愚蠢。對我來說,「create-image」至少可以查找與緩衝區目錄相關的圖像是合乎邏輯的,但似乎並不這樣。將圖像添加到'image-load-path'似乎也沒有幫助。我計劃調查並提交錯誤報告。 – user4815162342